From 5e1980becf69a4c65489bed6f94fa730ec8ef4bf Mon Sep 17 00:00:00 2001 From: fabrixxm Date: Wed, 8 May 2013 04:23:17 -0400 Subject: remove "internal" templates, use "tpl/" folder for smarty3 templates, move smarty3 templates in "tpl/" folder, add util/precompile_smarty.php utility, add precompiled templates --- view/tpl/admin_users.tpl | 81 +++++++++++++++++++++++++----------------------- 1 file changed, 43 insertions(+), 38 deletions(-) mode change 100644 => 100755 view/tpl/admin_users.tpl (limited to 'view/tpl/admin_users.tpl') diff --git a/view/tpl/admin_users.tpl b/view/tpl/admin_users.tpl old mode 100644 new mode 100755 index 6de504e2a..136ce3c3e --- a/view/tpl/admin_users.tpl +++ b/view/tpl/admin_users.tpl @@ -1,9 +1,14 @@ +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}}
-

$title - $page

+

{{$title}} - {{$page}}

-
- + + -

$h_pending

- {{ if $pending }} +

{{$h_pending}}

+ {{if $pending}} - {{ for $th_pending as $th }}{{ endfor }} + {{foreach $th_pending as $th}}{{/foreach}} - {{ for $pending as $u }} + {{foreach $pending as $u}} - - - - + + + + - {{ endfor }} + {{/foreach}}
$th{{$th}}
$u.created$u.name{{$u.created}}{{$u.name}} - - + +
- -
- {{ else }} -

$no_pending

- {{ endif }} + +
+ {{else}} +

{{$no_pending}}

+ {{/if}} -

$h_users

- {{ if $users }} +

{{$h_users}}

+ {{if $users}} - {{ for $th_users as $th }}{{ endfor }} + {{foreach $th_users as $th}}{{/foreach}} - {{ for $users as $u }} + {{foreach $users as $u}} - - - - - - + + + + + + - {{ endfor }} + {{/foreach}}
$th{{$th}}
$u.nickname$u.account_created$u.account_service_class{{$u.nickname}}{{$u.account_created}}{{$u.account_service_class}} - - + +
- -
- {{ else }} + +
+ {{else}} NO USERS?!? - {{ endif }} + {{/if}}
-- cgit v1.2.3