diff options
author | Haakon Meland Eriksen <haakon.eriksen@far.no> | 2014-06-24 19:34:36 +0200 |
---|---|---|
committer | Haakon Meland Eriksen <haakon.eriksen@far.no> | 2014-06-24 19:34:36 +0200 |
commit | b8dc9e855af2d30f33d0f90dc13d8cad0a7b3e70 (patch) | |
tree | 718df6305bcb82c8dcb4b287a7132422e748cdfb /view/tpl/settings_oauth.tpl | |
parent | c2d520f1be115fb3cb5da2a35eb10146cecee8aa (diff) | |
parent | a92fb0b04c3e6474ec48faf8e4cc65c382e89d66 (diff) | |
download | volse-hubzilla-b8dc9e855af2d30f33d0f90dc13d8cad0a7b3e70.tar.gz volse-hubzilla-b8dc9e855af2d30f33d0f90dc13d8cad0a7b3e70.tar.bz2 volse-hubzilla-b8dc9e855af2d30f33d0f90dc13d8cad0a7b3e70.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'view/tpl/settings_oauth.tpl')
-rwxr-xr-x[-rw-r--r--] | view/tpl/settings_oauth.tpl | 34 |
1 files changed, 18 insertions, 16 deletions
diff --git a/view/tpl/settings_oauth.tpl b/view/tpl/settings_oauth.tpl index 890c4ee6c..9be0035ff 100644..100755 --- a/view/tpl/settings_oauth.tpl +++ b/view/tpl/settings_oauth.tpl @@ -1,31 +1,33 @@ -<h1>$title</h1> +<div class="generic-content-wrapper"> +<h1>{{$title}}</h1> <form action="settings/oauth" method="post" autocomplete="off"> -<input type='hidden' name='form_security_token' value='$form_security_token'> +<input type='hidden' name='form_security_token' value='{{$form_security_token}}'> <div id="profile-edit-links"> <ul> <li> - <a id="profile-edit-view-link" href="$baseurl/settings/oauth/add">$add</a> + <a id="profile-edit-view-link" href="{{$baseurl}}/settings/oauth/add">{{$add}}</a> </li> </ul> </div> - {{ for $apps as $app }} + {{foreach $apps as $app}} <div class='oauthapp'> - <img src='$app.icon' class="{{ if $app.icon }} {{ else }}noicon{{ endif }}"> - {{ if $app.name }}<h4>$app.name</h4>{{ else }}<h4>$noname</h4>{{ endif }} - {{ if $app.my }} - {{ if $app.oauth_token }} - <div class="settings-submit-wrapper" ><button class="settings-submit" type="submit" name="remove" value="$app.oauth_token">$remove</button></div> - {{ endif }} - {{ endif }} - {{ if $app.my }} - <a href="$baseurl/settings/oauth/edit/$app.client_id" class="icon s22 edit" title="$edit"> </a> - <a href="$baseurl/settings/oauth/delete/$app.client_id?t=$form_security_token" class="icon s22 delete" title="$delete"> </a> - {{ endif }} + <img src='{{$app.icon}}' class="{{if $app.icon}} {{else}}noicon{{/if}}"> + {{if $app.name}}<h4>{{$app.name}}</h4>{{else}}<h4>{{$noname}}</h4>{{/if}} + {{if $app.my}} + {{if $app.oauth_token}} + <div class="settings-submit-wrapper" ><button class="settings-submit" type="submit" name="remove" value="{{$app.oauth_token}}">{{$remove}}</button></div> + {{/if}} + {{/if}} + {{if $app.my}} + <a href="{{$baseurl}}/settings/oauth/edit/{{$app.client_id}}" title="{{$edit}}"><i class="icon-pencil btn btn-default"></i></a> + <a href="{{$baseurl}}/settings/oauth/delete/{{$app.client_id}}?t={{$form_security_token}}" title="{{$delete}}"><i class="icon-remove btn btn-default"></i></a> + {{/if}} </div> - {{ endfor }} + {{/foreach}} </form> +</div> |