22 lines
812 B
HTML
22 lines
812 B
HTML
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
{% load crispy_forms_filters %}
|
|
{% block title %}{% trans "Add Organization" %}{% endblock title %}
|
|
{% block content %}
|
|
<div class="row my-4">
|
|
<h3>{% trans "Add Organization" %}</h3>
|
|
<form class="row g-3 mb-9" method="post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
{{ redirect_field }}
|
|
{{ form|crispy }}
|
|
|
|
<div class="d-flex mb-3">
|
|
<a href="{{request.META.HTTP_REFERER}}" class="btn btn-phoenix-primary me-2 px-6">{% trans "cancel"|capfirst %}</a>
|
|
<button class="btn btn-primary" type="submit">
|
|
<!--<i class="bi bi-save"></i> -->
|
|
{{ _("Save") }}
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{% endblock %} |