diff options
author | Mario <mario@mariovavti.com> | 2024-03-05 09:45:49 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-03-05 09:45:49 +0000 |
commit | d23ed6b11fd44be6d5764f792f3ae01882405149 (patch) | |
tree | b737b2e2e0f6937e957ac05c070af7c549e53825 /view/tpl | |
parent | 1e2a4a57b67d0f69f234e11f9cb30aa532b75896 (diff) | |
download | volse-hubzilla-d23ed6b11fd44be6d5764f792f3ae01882405149.tar.gz volse-hubzilla-d23ed6b11fd44be6d5764f792f3ae01882405149.tar.bz2 volse-hubzilla-d23ed6b11fd44be6d5764f792f3ae01882405149.zip |
improve things display a little
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/show_thing.tpl | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/view/tpl/show_thing.tpl b/view/tpl/show_thing.tpl index d738c9fc9..7aee4e8b2 100644 --- a/view/tpl/show_thing.tpl +++ b/view/tpl/show_thing.tpl @@ -1,16 +1,18 @@ <h2>{{$header}}</h2> {{if $thing}} <div class="thing-show"> -{{if $thing.obj_imgurl}}<a href="{{$thing.obj_url}}" ><img src="{{$thing.obj_imgurl}}" width="175" height="175" alt="{{$thing.obj_term}}" /></a>{{/if}} -<a href="{{$thing.obj_url}}" >{{$thing.obj_term}}</a> + {{if $thing.obj_imgurl}} + <a href="{{$thing.obj_url}}" ><img src="{{$thing.obj_imgurl}}" style="max-width: 100%;" alt="{{$thing.obj_term}}" /></a> + {{else}} + <a href="{{$thing.obj_url}}" >{{$thing.obj_url}}</a> + {{/if}} </div> {{if $canedit}} <div class="thing-edit-links"> -<a href="thing/edit/{{$thing.obj_obj}}" title="{{$edit}}" class="btn btn-outline-secondary" ><i class="fa fa-pencil thing-edit-icon"></i></a> -<a href="thing/drop/{{$thing.obj_obj}}" onclick="return confirmDelete();" title="{{$delete}}" class="btn btn-outline-secondary" ><i class="fa fa-trash-o drop-icons"></i></a> + <a href="thing/edit/{{$thing.obj_obj}}" title="{{$edit}}" class="btn btn-outline-secondary" ><i class="fa fa-pencil thing-edit-icon"></i></a> + <a href="thing/drop/{{$thing.obj_obj}}" onclick="return confirmDelete();" title="{{$delete}}" class="btn btn-outline-secondary" ><i class="fa fa-trash-o drop-icons"></i></a> </div> <div class="thing-edit-links-end"></div> {{/if}} - {{/if}} |