diff options
author | friendica <info@friendica.com> | 2013-08-13 21:01:34 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-13 21:01:34 -0700 |
commit | 17e405cfa97324f06d6720bbcf8f2ac2fb22ce6b (patch) | |
tree | ec207c4a65325ac751fa85679cc1160e0d61b151 /view/tpl/mitemlist.tpl | |
parent | 9508967c7350e69bf3321aaa63f5527a3e8096f4 (diff) | |
download | volse-hubzilla-17e405cfa97324f06d6720bbcf8f2ac2fb22ce6b.tar.gz volse-hubzilla-17e405cfa97324f06d6720bbcf8f2ac2fb22ce6b.tar.bz2 volse-hubzilla-17e405cfa97324f06d6720bbcf8f2ac2fb22ce6b.zip |
helps to include the new templates...
Diffstat (limited to 'view/tpl/mitemlist.tpl')
-rw-r--r-- | view/tpl/mitemlist.tpl | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/view/tpl/mitemlist.tpl b/view/tpl/mitemlist.tpl new file mode 100644 index 000000000..057665d49 --- /dev/null +++ b/view/tpl/mitemlist.tpl @@ -0,0 +1,18 @@ +<h1>{{$title}}</h1> +<h2>{{$menudesc}} ({{$menuname}})</h2> + +<a href="menu/{{$menu_id}}" title="{{$hintmenu}}">{{$edmenu}}</a><br /> +<a href="mitem/{{$menu_id}}/new" title="{{$hintnew}}">{{$hintnew}}</a> + +<br /> + +{{if $mlist }} +<ul id="mitemlist"> +{{foreach $mlist as $m }} +<li><a href="mitem/{{$menu_id}}/{{$m.mitem_id}}" title="{{$hintedit}}">{{$edit}}</a> | <a href="mitem/{{$menu_id}}/{{$m.mitem_id}}/drop" title={{$hintdrop}}>{{$drop}}</a> <a href="mitem/{{$menu_id}}/{{$m.mitem_id}}" title="{{$hintcontent}}">{{$m.mitem_desc}}</a> ({{$m.mitem_link}})</li> +{{/foreach}} +</ul> +{{/if}} + + + |