diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-07-20 19:35:00 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-07-20 19:35:00 -0700 |
commit | 5146e6e76bdc027cdb6036233cd1978a5bc036a3 (patch) | |
tree | 39b3392f1d4f56ae34a8fe2ccd47e1bb39fdf5e3 /view | |
parent | d87c7ceeb03a348526cd2f8bb5643b13a1860b40 (diff) | |
parent | 4d45bc9da185c4c8f558b07f8020dce8171fb957 (diff) | |
download | volse-hubzilla-5146e6e76bdc027cdb6036233cd1978a5bc036a3.tar.gz volse-hubzilla-5146e6e76bdc027cdb6036233cd1978a5bc036a3.tar.bz2 volse-hubzilla-5146e6e76bdc027cdb6036233cd1978a5bc036a3.zip |
Merge https://github.com/redmatrix/redmatrix into pending_merge
Diffstat (limited to 'view')
-rwxr-xr-x | view/tpl/field_acheckbox.tpl | 9 | ||||
-rwxr-xr-x | view/tpl/profile_vcard.tpl | 2 |
2 files changed, 8 insertions, 3 deletions
diff --git a/view/tpl/field_acheckbox.tpl b/view/tpl/field_acheckbox.tpl index f96fd5fd6..e99128bbb 100755 --- a/view/tpl/field_acheckbox.tpl +++ b/view/tpl/field_acheckbox.tpl @@ -5,11 +5,16 @@ </td> {{if $notself}} <td class="abook-them"> - <input type="checkbox" name='them_{{$field.0}}' id='them_id_{{$field.0}}' value="1" disabled="disabled" {{if $field.2}}checked="checked"{{/if}} /> + {{if $field.2}}<i class="icon-check"></i>{{else}}<i class="icon-check-empty"></i>{{/if}} </td> {{/if}} <td class="abook-me"> - <input type="checkbox" name='{{$field.0}}' class='abook-edit-me' id='me_id_{{$field.0}}' value="{{$field.4}}" {{if $field.3}}checked="checked"{{/if}}{{if $notself && $field.5}} disabled="disabled"{{/if}}/> + {{if $self || !$field.5}} + <input type="checkbox" name='{{$field.0}}' class='abook-edit-me' id='me_id_{{$field.0}}' value="{{$field.4}}" {{if $field.3}}checked="checked"{{/if}} /> + {{/if}} + {{if $notself && $field.5}} + {{if $field.3}}<i class="icon-check"></i>{{else}}<i class="icon-check-empty"></i>{{/if}} + {{/if}} </td> <td> {{if $field.5}}<span class="permission-inherited">{{$inherited}}{{if $self}}{{if $field.7}} <i class="icon-check"></i>{{else}} <i class="icon-check-empty"></i>{{/if}}{{/if}}</span>{{/if}} diff --git a/view/tpl/profile_vcard.tpl b/view/tpl/profile_vcard.tpl index 9eac48c6d..bea0d894f 100755 --- a/view/tpl/profile_vcard.tpl +++ b/view/tpl/profile_vcard.tpl @@ -1,5 +1,5 @@ <div class="vcard"> - <div id="profile-photo-wrapper"><img class="photo" width="175" height="175" src="{{$profile.photo}}?rev={{$profile.picdate}}" alt="{{$profile.name}}"></div> + <div id="profile-photo-wrapper"><img class="photo" src="{{$profile.photo}}?rev={{$profile.picdate}}" alt="{{$profile.name}}"></div> {{if $profile.edit}} <div class="dropdown"> <a class="profile-edit-side-link dropdown-toggle" data-toggle="dropdown" title="{{$profile.edit.3}}" href="#" ><i class="icon-pencil" title="{{$profile.edit.1}}" ></i></a> |