Files
eveAI/eveai_app/templates/user/tenant.html
Josako e8f97b7317 finetune Form presentation
Ease the development of future forms
Adapt tenant and user forms
2024-04-26 18:17:42 +02:00

22 lines
680 B
HTML

{% extends 'base.html' %}
{% from "macros.html" import render_field %}
{% block title %}Tenant Registration{% endblock %}
{% block content_title %}Register Tenant{% endblock %}
{% block content_description %}Add a new tenant to EveAI{% endblock %}
{% block content %}
<form method="post">
{{ form.hidden_tag() }}
{% set disabled_fields = [] %}
{% set exclude_fields = [] %}
{% for field in form %}
{{ render_field(field, disabled_fields, exclude_fields) }}
{% endfor %}
<button type="submit" class="btn btn-primary">Register Tenant</button>
</form>
{% endblock %}
{% block content_footer %} {% endblock %}