aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/show_thing.tpl
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-12-30 04:25:55 -0800
committerfriendica <info@friendica.com>2013-12-30 04:25:55 -0800
commit0dd7d936744cccfac4228cabecddc59ce05eb26c (patch)
tree9ad5a323161a4bce9a28efbbdaf079b6338100cd /view/tpl/show_thing.tpl
parent6e81c332b78e5eac78db4f7a26fd3018c8ba5d0a (diff)
downloadvolse-hubzilla-0dd7d936744cccfac4228cabecddc59ce05eb26c.tar.gz
volse-hubzilla-0dd7d936744cccfac4228cabecddc59ce05eb26c.tar.bz2
volse-hubzilla-0dd7d936744cccfac4228cabecddc59ce05eb26c.zip
basic edit and delete for things
Diffstat (limited to 'view/tpl/show_thing.tpl')
-rw-r--r--view/tpl/show_thing.tpl8
1 files changed, 8 insertions, 0 deletions
diff --git a/view/tpl/show_thing.tpl b/view/tpl/show_thing.tpl
index d37c9bb1a..2a8c06076 100644
--- a/view/tpl/show_thing.tpl
+++ b/view/tpl/show_thing.tpl
@@ -4,5 +4,13 @@
{{if $thing.imgurl}}<img src="{{$thing.imgurl}}" width="175" height="175" alt="{{$thing.term}}" />{{/if}}
<a href="{{$thing.url}}" >{{$thing.term}}</a>
</div>
+{{if $canedit}}
+<div class="thing-edit-links">
+<a href="thing/edit/{{$thing.term_hash}}" title="{{$edit}}"><i class="icon-pencil thing-edit-icon"></i></a>
+<a href="thing/drop/{{$thing.term_hash}}" onclick="return confirmDelete();" title="{{$delete}}" ><i class="icon-remove drop-icons"></i></a>
+</div>
+<div class="thing-edit-links-end"></div>
+{{/if}}
+
{{/if}}