summaryrefslogtreecommitdiffstats
path: root/askbot/skins/default/templates/embed/widget_form.html
blob: 65128d8eb21a9083dbe39f4d7318a7fcf6175cc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{% extends "one_column_body.html" %}
<!-- create_ask_widget.html -->
{% block title %}{% trans %}{{action}} an {{widget_name}} widget{% endtrans %}{% endblock %}
{% block content %}
<h1 class="section-title">{% trans %}{{action}} an {{widget_name}} widget{% endtrans %}</h1>
{#% if form.non_field_errors() %}
  {{ form.non_field_errors() }}
{% endif %#}
<form method="post">
    <table>
        {{ form.as_table() }}
        <tr>
            <td colspan="2" style="text-align: center">
                <input type="submit" class="submit" value={% trans %}Save{% endtrans %} />
            </td>
        </tr>
    </table>
</form>

{% endblock %}
{% block endjs %}
{% endblock %}