meingoethopia functionality
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
{% extends "public/default.html" %}
|
||||
|
||||
{% block content %}
|
||||
<p>Hier kannst Du einen Betrieb anmelden!</p>
|
||||
|
||||
<form action="" method="post">
|
||||
{% csrf_token %}
|
||||
<table>
|
||||
{{ form.as_table }}
|
||||
</table>
|
||||
<input type="submit" value="Verbindlich anmelden" />
|
||||
</form>
|
||||
|
||||
{% endblock %}
|
||||
@@ -2,4 +2,8 @@
|
||||
|
||||
{% block content %}
|
||||
<p>Mein Goethopia!</p>
|
||||
|
||||
<p><a href="{% url "meingoethopia:betrieb_new" %}">Betrieb anmelden</a></p>
|
||||
<p><a href="{% url "meingoethopia:partei_new" %}">Partei gründen</a></p>
|
||||
<p><a href="{% url "meingoethopia:praesident_werden" %}">Als Präsidentin aufstellen lassen</a></p>
|
||||
{% endblock %}
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
{% extends "public/default.html" %}
|
||||
|
||||
{% block content %}
|
||||
<p>Hier kannst Du eine Partei anmelden!</p>
|
||||
|
||||
<form action="" method="post">
|
||||
{% csrf_token %}
|
||||
<table>
|
||||
{{ form.as_table }}
|
||||
</table>
|
||||
<input type="submit" value="Verbindlich anmelden" />
|
||||
</form>
|
||||
|
||||
{% endblock %}
|
||||
@@ -0,0 +1,14 @@
|
||||
{% extends "public/default.html" %}
|
||||
|
||||
{% block content %}
|
||||
<p>Hier kannst Du dich als Präsident aufstellen lassen!</p>
|
||||
|
||||
<form action="" method="post">
|
||||
{% csrf_token %}
|
||||
<table>
|
||||
{{ form.as_table }}
|
||||
</table>
|
||||
<input type="submit" value="Verbindlich aufstellen lassen" />
|
||||
</form>
|
||||
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user