engelsystem/templates/user_messages.html

29 lines
763 B
HTML
Raw Normal View History

2014-08-22 22:34:13 +02:00
<div class="col-md-10">
<h1>%title%</h1>
%greeting%
<form action="%link%&action=send" method="post">
<table class="table">
<thead>
<tr>
<th>%new_label%</th>
<th>%date_label%</th>
<th>%from_label%</th>
<th>%to_label%</th>
<th>%text_label%</th>
<th>&nbsp;</th>
</tr>
</thead>
<tbody>
%messages%
<tr>
<td>&nbsp;</td>
<td>%date%</td>
<td>%from%</td>
<td>%to_select%</td>
<td><textarea class="form-control" name="text"></textarea></td>
<td><input class="btn btn-primary" type="submit" name="submit" value="%submit_label%" /></td>
</tr>
</tbody>
2011-06-02 21:38:19 +02:00
</table>
2014-08-22 22:34:13 +02:00
</form>
</div>