hobo/hobo/theme/templates/hobo/theme_options.html

25 lines
518 B
HTML

{% extends "hobo/theme_home.html" %}
{% load i18n %}
{% block breadcrumb %}
{{ block.super }}
<a href="{% url 'theme-home' %}">{% trans 'Theme' %}</a>
{% endblock %}
{% block appbar %}
<h2>{% trans 'Theme Options' %}</h2>
{% endblock %}
{% block content %}
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<div class="buttons">
<button class="submit-button">{% trans "Submit" %}</button>
<a class="cancel" href=".">{% trans "Cancel" %}</a>
</div>
</form>
{% endblock %}