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
15 lines
465 B
HTML
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 %}
|