Redigate solution submission page
This commit is contained in:
parent
ec37126049
commit
e0c1f291e0
@ -1,14 +1,22 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
{% from "_formhelpers.html" import render_field %}
|
||||
<form method=post>
|
||||
{{ render_field(form.user_id) }}
|
||||
<p></p>
|
||||
{% for subfield in form.question %}
|
||||
<p>{{ subfield }} {{ subfield.label }}</p>
|
||||
{% endfor %}
|
||||
<br>
|
||||
{{ form.solution_text(cols="40", rows="20") }}
|
||||
<p><input type=submit value=Abschicken>
|
||||
</form>
|
||||
{% endblock %}
|
||||
{% from "_formhelpers.html" import render_field %}
|
||||
{% block content %}
|
||||
<h1>Lösungseinreichung</h1>
|
||||
<div>
|
||||
<p>Bitte gib deine <strong>Id</strong> an, damit wir später zuordnen können, wer welche Lösungsidee abgeben hat.</p>
|
||||
<p>Kreuze die <strong>Frage</strong> an, die deiner Meinung nach <strong>ausschlaggebend für die Zuordnung zu den Häusern</strong> ist.</p>
|
||||
<p>Nutze das Freitextfeld, um einen kurzen <strong>Kommentar</strong> abzugeben, falls du eine <strong>Begründung</strong> für deine Idee abgeben willst oder einen Einfall hast, <strong>welche Antwortmöglichkeit(en)</strong> der relevanten Frage <strong>zum jeweiligen Haus passt</strong>.</p>
|
||||
</div>
|
||||
<form method=post>
|
||||
<h2>Id</h2>
|
||||
{{ form.user_id }}
|
||||
<p></p>
|
||||
<h2>Ausschlaggebende Frage</h2>
|
||||
{% for subfield in form.question %}
|
||||
<p>{{ subfield }} {{ subfield.label }}</p>
|
||||
{% endfor %}
|
||||
<h2>Kommentar</h2>
|
||||
{{ form.solution_text(cols="40", rows="20") }}
|
||||
<p><input type=submit value=Abschicken>
|
||||
</form>
|
||||
{% endblock %}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user