This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/passbook/admin/templates/generic/form.html

19 lines
496 B
HTML
Raw Normal View History

2018-11-16 08:10:35 +00:00
{% extends "administration/base.html" %}
{% load i18n %}
{% load utils %}
2018-11-16 08:10:35 +00:00
{% block content %}
<div class="container">
{% block above_form %}
{% endblock %}
2018-11-26 21:08:18 +00:00
<div class="">
<form action="" method="post" class="form-horizontal">
{% include 'partials/form.html' with form=form %}
<a class="btn btn-default" href="{% back %}">{% trans "Cancel" %}</a>
2018-11-26 21:08:18 +00:00
<input type="submit" class="btn btn-primary" value="{% trans 'Create' %}" />
</form>
</div>
2018-11-16 08:10:35 +00:00
</div>
{% endblock %}