Adds edit server form

This commit is contained in:
Mouse Reeve
2021-04-07 11:52:13 -07:00
parent 8261fbf86a
commit 74549956c2
5 changed files with 40 additions and 3 deletions

View File

@ -0,0 +1,15 @@
{% extends 'components/inline_form.html' %}
{% load i18n %}
{% block header %}
{% trans "Add server" %}
{% endblock %}
{% block form %}
<form>
{% csrf_token %}
{{ form.as_p }}
<button type="submit" class="button is-primary">{% trans "Save" %}</button>
</form>
{% endblock %}