aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/admin_profiles.tpl
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2016-03-02 12:31:46 +0100
committerMario Vavti <mario@mariovavti.com>2016-03-02 12:31:46 +0100
commit22729da2a2a3ef71b4c5f00f15e254bddecedd91 (patch)
treefe6ae53abea2ed9dffb1c49f9e8683691c24004d /view/tpl/admin_profiles.tpl
parentc97cc1487cbcac2c4fbc4d9e931a82df109af2e6 (diff)
parent428b4dbad63d429c3b0d47b49ff5918dbda3c596 (diff)
downloadvolse-hubzilla-22729da2a2a3ef71b4c5f00f15e254bddecedd91.tar.gz
volse-hubzilla-22729da2a2a3ef71b4c5f00f15e254bddecedd91.tar.bz2
volse-hubzilla-22729da2a2a3ef71b4c5f00f15e254bddecedd91.zip
Merge branch 'master' of https://github.com/redmatrix/hubzilla
Diffstat (limited to 'view/tpl/admin_profiles.tpl')
-rw-r--r--view/tpl/admin_profiles.tpl31
1 files changed, 31 insertions, 0 deletions
diff --git a/view/tpl/admin_profiles.tpl b/view/tpl/admin_profiles.tpl
new file mode 100644
index 000000000..70fcc303b
--- /dev/null
+++ b/view/tpl/admin_profiles.tpl
@@ -0,0 +1,31 @@
+<div class="generic-content-wrapper">
+<h2>{{$title}}</h2>
+
+<form action="admin/profs" method="post">
+
+{{include file="field_textarea.tpl" field=$basic}}
+{{include file="field_textarea.tpl" field=$advanced}}
+
+<input type="submit" name="submit" value="{{$submit}}" />
+
+</form>
+
+<div>{{$all_desc}}</div>
+
+<div>{{$all}}</div>
+
+<br /><br />
+<div>{{$cust_field_desc}}</div>
+
+<button href="admin/profs/new">{{$new}}</button>
+
+{{if $cust_fields}}
+<table>
+{{foreach $cust_fields as $field}}
+<tr><td>{{$field.field_desc}}</td><td>{{$field.field_name}}</td><td><a href="admin/profs/{{$field.id}}" >{{$edit}}</a> <a href="admin/profs/drop/{{$field.id}}">{{$drop}}</a></td></tr>
+{{/foreach}}
+</table>
+{{/if}}
+
+
+</div>