options.html 708 B

12345678910111213141516171819
  1. {% extends "sora/users/usercp/usercp.html" %}
  2. {% load i18n %}
  3. {% load url from future %}
  4. {% import "_forms.html" as form_theme %}
  5. {% import "sora/macros.html" as macros with context %}
  6. {% block title %}{{ macros.page_title(title=_('Change Forum Options')) }}{% endblock %}
  7. {% block action %}
  8. {{ super() }}
  9. <h2>{% trans %}Change Forum Options{% endtrans %}</h2>
  10. <form action="{{ url }}" method="post">
  11. {{ form_theme.form_widget(form) }}
  12. <div class="form-actions">
  13. <button name="save" type="submit" class="btn btn-primary">{% trans %}Change Options{% endtrans %}</button>
  14. <a href="{% url 'usercp' %}" class="btn">{% trans %}Cancel{% endtrans %}</a>
  15. </div>
  16. </form>
  17. {% endblock %}