diff options
Diffstat (limited to 'view/theme/redbasic/tpl/menulist.tpl')
-rw-r--r-- | view/theme/redbasic/tpl/menulist.tpl | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/view/theme/redbasic/tpl/menulist.tpl b/view/theme/redbasic/tpl/menulist.tpl deleted file mode 100644 index e23035062..000000000 --- a/view/theme/redbasic/tpl/menulist.tpl +++ /dev/null @@ -1,40 +0,0 @@ -<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-creator');"><i class="fa fa-pencil-square-o"></i> {{$hintnew}}</button> - </div> - <h2>{{$title}}</h2> - <div class="clear"></div> - </div> - - {{$create}} - - {{if $menus }} - <div id="menulist-content-wrapper" class="section-content-wrapper-np"> - <table id="menu-list-table"> - <tr> - <th width="1%"></th> - <th width="1%">{{$nametitle}}</th> - <th width="93%">{{$desctitle}}</th> - <th width="1%"></th> - <th width="1%"></th> - <th width="1%"></th> - <th width="1%" class="d-none d-md-table-cell">{{$created}}</th> - <th width="1%" class="d-none d-md-table-cell">{{$edited}}</th> - </tr> - {{foreach $menus as $m }} - <tr id="menu-list-item-{{$m.menu_id}}"> - <td>{{if $m.bookmark}}<i class="fa fa-bookmark menu-list-tool" title="{{$bmark}}" ></i>{{/if}}</td> - <td><a href="mitem/{{$m.menu_id}}{{if $sys}}?f=&sys=1{{/if}}" title="{{$hintcontent}}">{{$m.menu_name}}</a></td> - <td>{{$m.menu_desc}}</td> - <td class="menu-list-tool"><a href="menu/{{$m.menu_id}}{{if $sys}}?f=&sys=1{{/if}}" title="{{$hintedit}}"><i class="fa fa-pencil"></i></a></td> - <td class="menu-list-tool"><a href="rpost?attachment={{$m.element}}" title="{{$share}}"><i class="fa fa-share-square-o"></i></a></td> - <td class="menu-list-tool"><a href="#" title="{{$hintdrop}}" onclick="dropItem('menu/{{$m.menu_id}}/drop{{if $sys}}?f=&sys=1{{/if}}', '#menu-list-item-{{$m.menu_id}}'); return false;"><i class="fa fa-trash-o drop-icons"></i></a></td> - <td class="d-none d-md-table-cell">{{$m.menu_created}}</td> - <td class="d-none d-md-table-cell">{{$m.menu_edited}}</td> - </tr> - {{/foreach}} - </table> - </div> - {{/if}} -</div> |