Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Cette révision appartient à :
PantsuDev 2017-07-26 11:58:28 +10:00
Parent 6444636467
révision af94485dfa
2 fichiers modifiés avec 22 ajouts et 5 suppressions

Voir le fichier

@ -1,4 +1,6 @@
{{ extends "layouts/index_admin" }} {{block title()}}{{ T("torrents_list") }}{{end}} {{ block content_body()}}
{{ extends "layouts/index_admin" }}
{{block title()}}{{ T("torrents_list") }}{{end}}
{{ block content_body()}}
<div class="results box">
<h1>{{ T("torrents_list") }}</h1>
<form method="post" action="">
@ -78,7 +80,8 @@
</table>
</form>
</div>
{{end}} {{ block footer_js()}}
{{end}}
{{ block footer_js()}}
<!-- JS Function for selecting multiple checkboxes -->
<script type="text/javascript" src="{{URL.Parse("/js/selectAll.js") }}"></script>
<script type="text/javascript">

Voir le fichier

@ -1,3 +1,17 @@
{* We extend the base template *} {{ extends "partials/base" }} {{import "partials/helpers/search"}} {* We apply the menu in the base template *} {{ block menu()}} {{include "partials/menu/admin"}} {{end}} {* We add the class content for admin *} {{ block
contclass()}}content-admin{{end}} {* We add the mod panel title and the title block *} {{block titleBase()}}Moderation Panel - {{block title()}}{{end}}{{end}} {* We add the mod panel search refine and the body block *} {{ block content_body_base()}} {{
yield search_refine(url=URL.Parse("/mod/torrents")) }} {{ block content_body()}}{{end}} {{end}}
{* We extend the base template *Do more }
{{ extends "partials/base" }}
{{import "partials/helpers/search"}}
{* We apply the menu in the base template *}
{{ block menu()}}
{{include "partials/menu/admin"}}
{{end}}
{* We add the class content for admin *}
{{ block contclass()}}content-admin{{end}}
{* We add the mod panel title and the title block *}
{{block titleBase()}}Moderation Panel - {{block title()}}{{end}}
{{end}}
{* We add the mod panel search refine and the body block *}
{{ block content_body_base()}}
{{ block content_body()}}
{{end}}
{{end}}