mCaptcha/templates/panel/sitekey/list/index.html

31 lines
932 B
HTML
Raw Normal View History

2021-05-05 10:27:05 +03:00
<. include!("../../../components/headers.html"); .> <.
include!("../../header/index.html"); .>
2021-05-03 17:54:03 +03:00
2021-05-06 18:02:44 +03:00
<main class="panel-main">
2021-05-05 10:27:05 +03:00
<. include!("../../taskbar/index.html"); .> <.
include!("../../help-banner/index.html"); .>
2021-05-03 17:54:03 +03:00
<!-- Main content container -->
<div class="inner-container">
<!-- Main menu/ important actions roaster -->
2021-05-04 16:04:36 +03:00
<ul class="sitekey-list__box">
<h1 class="sitekey-list__title">Your Sitekeys</h1>
<. for sitekey in sitekeys.iter() { .>
<a href="/sitekey/<.= sitekey.key .>/view" class="sitekey-list__item-container">
<li class="sitekey-list__item">
2021-05-03 17:54:03 +03:00
2021-05-04 16:04:36 +03:00
<span class="sitekey-list__name">
<.= sitekey.name .>
</span>
<span class="sitekey-list__key">
<.= sitekey.key .>
</span>
</li>
</a>
<. } .>
</ul>
2021-05-03 17:54:03 +03:00
</div>
<!-- end of container -->
</main>
2021-05-05 10:27:05 +03:00
<. include!("../../../components/footers.html"); .>