diff options
author | zotlabs <mike@macgirvin.com> | 2017-05-02 12:46:50 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-05-02 12:46:50 -0700 |
commit | 80ec92ce8d9f615eeb06d92b67ad1ff840cad0cc (patch) | |
tree | 484f2101b78ae16f397310470b7e30f2c03d7b57 /view/tpl/mitemlist.tpl | |
parent | 83c4dd6bda1677a3441d06247ea076094394703e (diff) | |
download | volse-hubzilla-80ec92ce8d9f615eeb06d92b67ad1ff840cad0cc.tar.gz volse-hubzilla-80ec92ce8d9f615eeb06d92b67ad1ff840cad0cc.tar.bz2 volse-hubzilla-80ec92ce8d9f615eeb06d92b67ad1ff840cad0cc.zip |
Revert "move theme specific files to theme dir"
This reverts commit e332d1074f1b663ec66d37b0f575df2e41d5535c.
Diffstat (limited to 'view/tpl/mitemlist.tpl')
-rw-r--r-- | view/tpl/mitemlist.tpl | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/view/tpl/mitemlist.tpl b/view/tpl/mitemlist.tpl new file mode 100644 index 000000000..b28cdfc7e --- /dev/null +++ b/view/tpl/mitemlist.tpl @@ -0,0 +1,34 @@ +<div class="generic-content-wrapper"> + <div class="section-title-wrapper"> + <div class="pull-right"> + <button id="webpage-create-btn" class="btn btn-sm btn-success" onclick="openClose('menu-element-creator');"><i class="fa fa-pencil-square-o"></i> {{$hintnew}}</button> + </div> + <h2>{{$title}} {{if $menudesc}}{{$menudesc}}{{else}}{{$menuname}}{{/if}}</h2> + <div class="clear"></div> + </div> + + {{$create}} + + {{if $mlist }} + <div id="mitemlist-content-wrapper" class="section-content-wrapper-np"> + <table id="mitem-list-table"> + <tr> + <th width="1%">{{$nametitle}}</th> + <th width="96%">{{$targettitle}}</th> + <th width="1%"></th> + <th width="1%"></th> + <th width="1%"></th> + </tr> + {{foreach $mlist as $m }} + <tr id="mitem-list-item-{{$m.mitem_id}}"> + <td width="1%">{{$m.mitem_desc}}</td> + <td width="96%"><a href="{{$m.mitem_link}}">{{$m.mitem_link}}</a></td> + <td width="1%" class="mitem-list-tool dropdown">{{if $m.allow_cid || $m.allow_gid || $m.deny_cid || $m.deny_gid}}<i class="fa fa-lock lockview" data-toggle="dropdown" onclick="lockview('menu_item',{{$m.mitem_id}});" ></i><ul id="panel-{{$m.mitem_id}}" class="lockview-panel dropdown-menu"></ul>{{/if}}</td> + <td width="1%" class="mitem-list-tool"><a href="mitem/{{$menu_id}}/{{$m.mitem_id}}" title="{{$hintedit}}"><i class="fa fa-pencil"></i></a></td> + <td width="1%" class="mitem-list-tool"><a href="#" title="{{$hintdrop}}" onclick="dropItem('mitem/{{$menu_id}}/{{$m.mitem_id}}/drop', '#mitem-list-item-{{$m.mitem_id}}, #pmenu-item-{{$m.mitem_id}}'); return false;"><i class="fa fa-trash-o drop-icons"></i></a></td> + </tr> + {{/foreach}} + </table> + </div> + {{/if}} +</div> |