This repository has been archived on 2026-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
RepApp/rc_hip/repapp/templates/repapp/orga/create_cafe.html
2023-05-04 21:32:37 +02:00

15 lines
452 B
HTML

{% extends "repapp/base.html" %}
{% load crispy_forms_tags %}
{% block title %}
- Repair-Café anlegen
{% endblock title %}
{% block page_title %}
Repair-Café anlegen
{% endblock page_title %}
{% block content %}
<form action="{% url 'create_cafe' %}" method="post">
{% csrf_token %}
{{ form|crispy }}
<button type="submit" class="btn btn-primary submit_button">Absenden</button>
</form>
{% endblock content %}