forked from leftypol/leftypol
various improvements
This commit is contained in:
parent
fb3e819132
commit
ad55a634bf
7 changed files with 247 additions and 37 deletions
41
templates/mod/pm.html
Normal file
41
templates/mod/pm.html
Normal file
|
@ -0,0 +1,41 @@
|
|||
<form action="" method="post">
|
||||
<table>
|
||||
<tr>
|
||||
<th>From</th>
|
||||
{% if username %}
|
||||
<td><a href="?/new_PM/{{ username|e }}">{{ username|e }}</a></td>
|
||||
{% else %}
|
||||
<td><em>deleted?</em></td>
|
||||
{% endif %}
|
||||
</tr>
|
||||
{% if to != mod.id %}
|
||||
<tr>
|
||||
<th>To</th>
|
||||
{% if to_username %}
|
||||
<td><a href="?/new_PM/{{ to_username|e }}">{{ to_username|e }}</a></td>
|
||||
{% else %}
|
||||
<td><em>deleted?</em></td>
|
||||
{% endif %}
|
||||
</tr>
|
||||
{% endif %}
|
||||
<tr>
|
||||
<th>Date</th>
|
||||
<td>{{ time|date(config.post_date) }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Message</th>
|
||||
<td>{{ message }}</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<ul style="list-style:none;text-align:center;padding:0">
|
||||
<li style="padding:5px 0">
|
||||
<input type="submit" name="delete" value="Delete forever">
|
||||
</li>
|
||||
<li style="padding:5px 0">
|
||||
<a href="?/PM/{{ id }}/reply">
|
||||
Reply with quote
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</form>
|
Loading…
Add table
Add a link
Reference in a new issue