streams/view/tpl/show_thing.tpl

17 lines
629 B
Smarty
Raw Normal View History

<h2>{{$header}}</h2>
{{if $thing}}
<div class="thing-show">
{{if $thing.imgurl}}<img src="{{$thing.imgurl}}" width="175" height="175" alt="{{$thing.term}}" />{{/if}}
<a href="{{$thing.url}}" >{{$thing.term}}</a>
</div>
2013-12-30 12:25:55 +00:00
{{if $canedit}}
<div class="thing-edit-links">
2014-06-23 12:19:28 +00:00
<a href="thing/edit/{{$thing.term_hash}}" title="{{$edit}}" class="btn btn-default" ><i class="icon-pencil thing-edit-icon"></i></a>
<a href="thing/drop/{{$thing.term_hash}}" onclick="return confirmDelete();" title="{{$delete}}" class="btn btn-default" ><i class="icon-remove drop-icons"></i></a>
2013-12-30 12:25:55 +00:00
</div>
<div class="thing-edit-links-end"></div>
{{/if}}
{{/if}}