diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-04-24 22:37:22 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-04-24 22:37:22 +0200 |
commit | b7f6cceaea464df81fac872d2d7b863bd02746de (patch) | |
tree | a321a4c6082329e947361fcd597bb5ea498dd704 /view/tpl | |
parent | 2583cab469561cc910001196fbbbbafc5c1920ef (diff) | |
download | volse-hubzilla-b7f6cceaea464df81fac872d2d7b863bd02746de.tar.gz volse-hubzilla-b7f6cceaea464df81fac872d2d7b863bd02746de.tar.bz2 volse-hubzilla-b7f6cceaea464df81fac872d2d7b863bd02746de.zip |
provide block titles in blocklist
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/blocklist.tpl | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/view/tpl/blocklist.tpl b/view/tpl/blocklist.tpl index f599aade7..f653ef59d 100644 --- a/view/tpl/blocklist.tpl +++ b/view/tpl/blocklist.tpl @@ -16,7 +16,8 @@ <div id="pagelist-content-wrapper" class="section-content-wrapper-np"> <table id="block-list-table"> <tr> - <th width="97%">{{$name}}</th> + <th width="1%">{{$name}}</th> + <th width="94%">{{$blocktitle}}</th> <th width="1%"></th> <th width="1%"></th> <th width="1%"></th> @@ -28,11 +29,14 @@ <tr id="block-list-item-{{$item.url}}"> <td> {{if $view}} - <a href="block/{{$channel}}/{{$item.title}}" title="{{$view}}">{{$item.title}}</a> + <a href="block/{{$channel}}/{{$item.title}}" title="{{$view}}">{{$item.name}}</a> {{else}} - {{$item.title}} + {{$item.name}} {{/if}} </td> + <td> + {{$item.title}} + </td> <td class="webpage-list-tool"> {{if $edit}} <a href="{{$baseurl}}/{{$item.url}}" title="{{$edit}}"><i class="icon-pencil"></i></a> |