Parent: [462c18] (diff)

Child: [750e96] (diff)

Download this file

admin_fields.html    25 lines (19 with data), 592 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{% extends g.theme.master %}
{% if allow_config %}
{% do g.register_app_js('js/custom-fields.js', app=app) %}
{% endif %}
{% block title %}{{c.project.name}} / {{app.config.options.mount_label}} / Admin Fields{% endblock %}
{% block header %}{{app.config.options.mount_label}} Admin Fields{% endblock %}
{% block content %}
{{c.form.display(value=globals, action='set_custom_fields')}}
{% endblock %}
{% block extra_css %}
<style type="text/css">
div.custom-field {
cursor: move;
border:1px solid #ccc;
margin:2px;
padding:2px;
}
</style>
{% endblock %}