basic edit and delete for things

This commit is contained in:
friendica
2013-12-30 04:25:55 -08:00
parent 6e81c332b7
commit 0dd7d93674
6 changed files with 159 additions and 11 deletions

View File

@@ -2445,3 +2445,8 @@ img.mail-list-sender-photo {
#sidebar-group-list ul {
list-style-type: none;
}
.profile-thing-list img, .thing-show img, .thing-edit-links a {
margin-top: 8px;
margin-right: 15px;
}

View File

@@ -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}}

29
view/tpl/thing_edit.tpl Normal file
View File

@@ -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>