aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2024-03-05 09:45:49 +0000
committerMario <mario@mariovavti.com>2024-03-05 09:45:49 +0000
commitd23ed6b11fd44be6d5764f792f3ae01882405149 (patch)
treeb737b2e2e0f6937e957ac05c070af7c549e53825 /view/tpl
parent1e2a4a57b67d0f69f234e11f9cb30aa532b75896 (diff)
downloadvolse-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.tpl12
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}}