diff options
author | fabrixxm <fabrix.xm@gmail.com> | 2013-05-08 04:23:17 -0400 |
---|---|---|
committer | fabrixxm <fabrix.xm@gmail.com> | 2013-05-08 04:23:17 -0400 |
commit | 5e1980becf69a4c65489bed6f94fa730ec8ef4bf (patch) | |
tree | 2f1f1c7540c62c049dd314b0155380c6cb4526b5 /view/tpl/delegate.tpl | |
parent | c753fa19d289e936131aad706cf31bcfe111b4c1 (diff) | |
download | volse-hubzilla-5e1980becf69a4c65489bed6f94fa730ec8ef4bf.tar.gz volse-hubzilla-5e1980becf69a4c65489bed6f94fa730ec8ef4bf.tar.bz2 volse-hubzilla-5e1980becf69a4c65489bed6f94fa730ec8ef4bf.zip |
remove "internal" templates, use "tpl/" folder for smarty3 templates,
move smarty3 templates in "tpl/" folder, add util/precompile_smarty.php utility, add precompiled templates
Diffstat (limited to 'view/tpl/delegate.tpl')
-rwxr-xr-x[-rw-r--r--] | view/tpl/delegate.tpl | 57 |
1 files changed, 31 insertions, 26 deletions
diff --git a/view/tpl/delegate.tpl b/view/tpl/delegate.tpl index 9a7d2e18d..7aa85cf39 100644..100755 --- a/view/tpl/delegate.tpl +++ b/view/tpl/delegate.tpl @@ -1,57 +1,62 @@ -<h3>$header</h3> +{{* + * AUTOMATICALLY GENERATED TEMPLATE + * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN + * + *}} +<h3>{{$header}}</h3> -<div id="delegate-desc" class="delegate-desc">$desc</div> +<div id="delegate-desc" class="delegate-desc">{{$desc}}</div> -{{ if $managers }} -<h3>$head_managers</h3> +{{if $managers}} +<h3>{{$head_managers}}</h3> -{{ for $managers as $x }} +{{foreach $managers as $x}} <div class="contact-block-div"> <a class="contact-block-link" href="#" > -<img class="contact-block-img" src="$base/photo/thumb/$x.uid" title="$x.username ($x.nickname)" /> +<img class="contact-block-img" src="{{$base}}/photo/thumb/{{$x.uid}}" title="{{$x.username}} ({{$x.nickname}})" /> </a> </div> -{{ endfor }} +{{/foreach}} <div class="clear"></div> <hr /> -{{ endif }} +{{/if}} -<h3>$head_delegates</h3> +<h3>{{$head_delegates}}</h3> -{{ if $delegates }} -{{ for $delegates as $x }} +{{if $delegates}} +{{foreach $delegates as $x}} <div class="contact-block-div"> -<a class="contact-block-link" href="$base/delegate/remove/$x.uid" > -<img class="contact-block-img" src="$base/photo/thumb/$x.uid" title="$x.username ($x.nickname)" /> +<a class="contact-block-link" href="{{$base}}/delegate/remove/{{$x.uid}}" > +<img class="contact-block-img" src="{{$base}}/photo/thumb/{{$x.uid}}" title="{{$x.username}} ({{$x.nickname}})" /> </a> </div> -{{ endfor }} +{{/foreach}} <div class="clear"></div> -{{ else }} -$none -{{ endif }} +{{else}} +{{$none}} +{{/if}} <hr /> -<h3>$head_potentials</h3> -{{ if $potentials }} -{{ for $potentials as $x }} +<h3>{{$head_potentials}}</h3> +{{if $potentials}} +{{foreach $potentials as $x}} <div class="contact-block-div"> -<a class="contact-block-link" href="$base/delegate/add/$x.uid" > -<img class="contact-block-img" src="$base/photo/thumb/$x.uid" title="$x.username ($x.nickname)" /> +<a class="contact-block-link" href="{{$base}}/delegate/add/{{$x.uid}}" > +<img class="contact-block-img" src="{{$base}}/photo/thumb/{{$x.uid}}" title="{{$x.username}} ({{$x.nickname}})" /> </a> </div> -{{ endfor }} +{{/foreach}} <div class="clear"></div> -{{ else }} -$none -{{ endif }} +{{else}} +{{$none}} +{{/if}} <hr /> |