diff options
author | friendica <info@friendica.com> | 2013-12-30 04:25:55 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-30 04:25:55 -0800 |
commit | 0dd7d936744cccfac4228cabecddc59ce05eb26c (patch) | |
tree | 9ad5a323161a4bce9a28efbbdaf079b6338100cd /view/tpl | |
parent | 6e81c332b78e5eac78db4f7a26fd3018c8ba5d0a (diff) | |
download | volse-hubzilla-0dd7d936744cccfac4228cabecddc59ce05eb26c.tar.gz volse-hubzilla-0dd7d936744cccfac4228cabecddc59ce05eb26c.tar.bz2 volse-hubzilla-0dd7d936744cccfac4228cabecddc59ce05eb26c.zip |
basic edit and delete for things
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/show_thing.tpl | 8 | ||||
-rw-r--r-- | view/tpl/thing_edit.tpl | 29 |
2 files changed, 37 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}} diff --git a/view/tpl/thing_edit.tpl b/view/tpl/thing_edit.tpl new file mode 100644 index 000000000..8379c15ae --- /dev/null +++ b/view/tpl/thing_edit.tpl @@ -0,0 +1,29 @@ +<h2>{{$thing_hdr}}</h2> +<form action="thing" method="post" > +<input type="hidden" name="term_hash" value="{{$thing_hash}}" /> + +{{if $multiprof }} +<div class="thing-profile-label">{{$profile_lbl}}</div> + +<div class="thing-profile">{{$profile_select}}</div> +{{/if}} + +<div class="thing-verb-label">{{$verb_lbl}}</div> + +<div class="thing-verb">{{$verb_select}}</div> + + +<label class="thing-label" for="thing-term">{{$thing_lbl}}</label> +<input type="text" class="thing-input" id="thing-term" name="term" value="{{$thething}}" /> +<div class="thing-field-end"></div> +<label class="thing-label" for="thing-url">{{$url_lbl}}</label> +<input type="text" class="thing-input" id="thing-url" name="url" value="{{$theurl}}" /> +<div class="thing-field-end"></div> +<label class="thing-label" for="thing-img">{{$img_lbl}}</label> +<input type="text" class="thing-input" id="thing-img" name="img" value="{{$imgurl}}" /> +<div class="thing-field-end"></div> + +<div class="thing-end"></div> + +<input type="submit" class="thing-submit" name="submit" value="{{$submit}}" /> +</form> |