hobo/hobo/environment/templates/environment/variable_form.html

24 lines
538 B
HTML

{% extends "hobo/base.html" %}
{% load i18n %}
{% block appbar %}
<h2>{% trans 'Variable' %}</h2>
{% endblock %}
{% block content %}
<form method="post" enctype="multipart/form-data">
<div id="form-content">
{% csrf_token %}
{{ form.as_p }}
</div>
{% block buttons %}
<div class="buttons">
<button class="submit-button">{% trans 'Save' %}</button>
<a class="cancel" href="{% url 'environment-home' %}">{% trans 'Cancel' %}</a>
</div>
{% endblock %}
</form>
{% endblock %}