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/edit_guest.html
Tom Irgang 9802a6345c start orga area
Orga login:
- Remove not needed login page for members
- Add landing page after member login with redirect to correct area
- Add selection page if member is orga and repa
- Add orga main menu
- Add cafe CRUD pages
- Add guest list and edit view
2023-05-18 09:18:58 +02:00

15 lines
465 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 'edit_guest' guest.id %}" method="post">
{% csrf_token %}
{{ form|crispy }}
<button type="submit" class="btn btn-primary submit_button">Aktualisieren</button>
</form>
{% endblock content %}