2020-05-27 12:24:06 +00:00
|
|
|
{% extends "base.html" %}
|
2021-07-07 11:12:38 +00:00
|
|
|
{% load django_bootstrap5 %}
|
2020-06-15 08:46:13 +00:00
|
|
|
{% load icons %}
|
2020-05-27 12:24:06 +00:00
|
|
|
{% load i18n %}
|
|
|
|
|
2020-06-16 12:04:37 +00:00
|
|
|
{% block title %}{{ title }}{% endblock %}
|
2020-05-27 12:24:06 +00:00
|
|
|
|
2020-10-15 14:18:45 +00:00
|
|
|
{% block page_heading %}{{ title }}{% endblock page_heading %}
|
2020-07-13 09:33:09 +00:00
|
|
|
|
2020-05-27 12:24:06 +00:00
|
|
|
{% block content %}
|
2020-07-13 09:33:09 +00:00
|
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
2020-05-19 16:53:54 +00:00
|
|
|
<form id="create-update" action="" method="post">
|
2020-05-27 12:24:06 +00:00
|
|
|
{% csrf_token %}
|
|
|
|
{% bootstrap_form form layout='horizontal' %}
|
|
|
|
</form>
|
2020-07-13 09:33:09 +00:00
|
|
|
</div>
|
|
|
|
<div class="card-footer">
|
2021-07-07 11:12:38 +00:00
|
|
|
<div class="mb-0 float-end">
|
2020-05-27 12:24:06 +00:00
|
|
|
<a class="btn btn-primary" href="javascript:history.back()">{% icon 'times' %} {% trans "Cancel" %}</a>
|
|
|
|
<button type="submit" form="create-update" class="btn btn-success">
|
|
|
|
{% icon 'check' %} {% trans "Save" %}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock content %}
|