You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
453 B
7 lines
453 B
<tr{% if not msg.is_viewed %} class="green"{% endif %}>
|
|
<td><input type="checkbox" id="c{{ msg.id }}"><label for="c{{ msg.id }}" class="checkbox"></label></td>
|
|
<td>{{ msg.text }}</td>
|
|
<td><a href="{% url 'acc_app:other_profile' msg.sender.id %}">{{ msg.sender.get_full_name }}</a></td>
|
|
<td>{{ msg.date_send }}</td>
|
|
<td><a href="{% url 'privmsg:delitem' msg.id %}" class="btn btn-blue jsdel"><i class="icon-trash"></i></a></td>
|
|
</tr>
|