Initial commit

This commit is contained in:
Josako
2024-04-22 21:23:00 +02:00
parent 48cc80db17
commit fd25c39395
24 changed files with 748 additions and 8 deletions

View File

@@ -0,0 +1,29 @@
{% extends 'base.html' %}
{% block title %}Tenant Details{% endblock %}
{% block content %}
<form action="" method="post" novalidate>
<p>
{{ form.name.label }}<br>
{{ form.name(size=80) }}
</p>
<p>
{{ form.website.label }}<br>
{{ form.website(size=80) }}
</p>
<p>
{{ form.license_start_date.label }}<br>
{{ form.license_start_date(size=20) }}
</p>
<p>
{{ form.license_end_date.label }}<br>
{{ form.license_end_date(size=20) }}
</p>
<p>
{{ form.allowed_monthly_interactions.label }}<br>
{{ form.allowed_monthly_interactions(size=20) }}
</p>
<p>{{ form.submit() }}</p>
</form>
{% endblock %}