leftypol/templates/mod/new_pm.html

20 lines
550 B
HTML
Raw Normal View History

2012-04-16 06:40:24 +00:00
<form action="?/new_PM/{{ username|e }}" method="post">
2013-09-23 06:48:56 +00:00
<input type="hidden" name="token" value="{{ token }}">
2012-04-13 12:00:40 +00:00
<table>
<tr>
<th>To</th>
{% if mod|hasPermission(config.mod.editusers) %}
<td><a href="?/users/{{ id }}">{{ username|e }}</a></td>
{% else %}
<td>{{ username|e }}</td>
{% endif %}
</tr>
<tr>
<th>Message</th>
2012-04-16 06:40:24 +00:00
<td><textarea name="message" rows="10" cols="40">{{ message }}</textarea></td>
2012-04-13 12:00:40 +00:00
</tr>
</table>
2012-05-05 15:33:10 +00:00
<p style="text-align:center"><input type="submit" value="{% trans 'Send message' %}"></p>
2012-04-13 12:00:40 +00:00
</form>