diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-01-15 11:28:05 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-01-15 11:28:05 +0100 |
commit | f4e1b2123aed39e3f863ee327b27cb0e7f17520c (patch) | |
tree | f24802e587f07718fc9cf286ff09be6472eef79d /view/tpl/connection_template.tpl | |
parent | 63ee0daac51b8c04123479f2ac91e1762492896f (diff) | |
download | volse-hubzilla-f4e1b2123aed39e3f863ee327b27cb0e7f17520c.tar.gz volse-hubzilla-f4e1b2123aed39e3f863ee327b27cb0e7f17520c.tar.bz2 volse-hubzilla-f4e1b2123aed39e3f863ee327b27cb0e7f17520c.zip |
add an approve button to /connections and get rid of the modal popup in /connedit. for quick approval (default collection and perms etc.) we now can use the approve button in /connections else click the edit button and make changes and approval from /connedit. hope thats any better...
Diffstat (limited to 'view/tpl/connection_template.tpl')
-rwxr-xr-x | view/tpl/connection_template.tpl | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/view/tpl/connection_template.tpl b/view/tpl/connection_template.tpl index a0bdf33aa..2629e5cf4 100755 --- a/view/tpl/connection_template.tpl +++ b/view/tpl/connection_template.tpl @@ -1,8 +1,15 @@ <div id="contact-entry-wrapper-{{$contact.id}}"> <div class="section-subtitle-wrapper"> <div class="pull-right"> + {{if $contact.approve}} + <form action="connedit/{{$contact.id}}" method="post" > + <button type="submit" class="btn btn-success btn-xs" name="pending" value="1" title="{{$contact.approve_hover}}"><i class="icon-ok"></i> {{$contact.approve}}</button> + {{/if}} <a href="#" class="btn btn-danger btn-xs" title="{{$contact.delete_hover}}" onclick="dropItem('{{$contact.deletelink}}', '#contact-entry-wrapper-{{$contact.id}}'); return false;"><i class="icon-trash"></i> {{$contact.delete}}</a> - <a href="{{$contact.link}}" class="btn btn-success btn-xs" title="{{$contact.edit_hover}}"><i class="icon-pencil"></i> {{$contact.edit}}</a> + <a href="{{$contact.link}}" class="btn btn-default btn-xs" title="{{$contact.edit_hover}}"><i class="icon-pencil"></i></a> + {{if $contact.approve}} + </form> + {{/if}} </div> <h3>{{if $contact.public_forum}}<i class="icon-comments-alt"></i> {{/if}}<a href="{{$contact.url}}" title="{{$contact.img_hover}}" >{{$contact.name}}</a></h3> </div> |