src/cm/templates/site/text_settings.html
author Yves-Marie Haussonne <ymh.work+github@gmail.com>
Fri, 09 May 2014 18:35:26 +0200
changeset 656 a84519031134
parent 439 8994d24e4b2f
permissions -rw-r--r--
add link to "privacy policy" in the header test

{% extends "site/layout/base_text.html" %}
{% load i18n %}
{% load com %}

{% block main %}

<script type="text/javascript">
<!--
tb_conf['current_tab'] = 'settings';
-->
</script>

<div id="text_settings" class="tab-meta">
<form id="settings_form" class="text-form wizard-form" action="." method="post">
    <table class="wide_form">
        <tbody>
            {% include "site/macros/form_fields.html" %}
    <tr>
        <td style="vertical-align: top; width: 20%; text-align:right;">
        </td>
        <td>
            <label></label>
            <input name="save" id="save" type="submit" value="{% blocktrans %}Save{% endblocktrans %}"/>            
        </td>
    </tr>
        </tbody>
    </table>
</form>

</div>

{% endblock %}