engelsystem/templates/user_questions.html

60 lines
1010 B
HTML

<p>
Unbeantwortete Fragen:
</p>
<table>
<thead>
<tr>
<th>
Frage
</th>
<th>
&nbsp;
</th>
</tr>
</thead>
<tbody>
%open_questions%
</tbody>
</table>
<hr/>
<p>
Beantwortete Fragen:
</p>
<table>
<thead>
<tr>
<th>
Frage
</th>
<th>
Von
</th>
<th>
Antwort
</th>
<th>
&nbsp;
</th>
</tr>
</thead>
<tbody>
%answered_questions%
</tbody>
</table>
<hr/>
<p>
Frage einen Orga:
</p>
<form action="%link%&action=ask" method="post">
<table>
<tr>
<td>
Frage:
</td>
<td>
<textarea name="question"></textarea>
</td>
</tr>
</table>
<input type="submit" name="submit" value="Fragen" />
</form>