~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to templates/django_messages/outbox.html

  • Committer: franku
  • Date: 2018-11-22 11:08:51 UTC
  • Revision ID: somal@arcor.de-20181122110851-77riof0o4dx2zcm6
split user uploaded content from static content

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
{% load i18n %} 
3
3
{% load custom_date %}
4
4
{% load wlprofile_extras %}
 
5
{% load static %}
5
6
 
6
7
{% block title %}
7
8
Outbox - {{ block.super }}
28
29
                                <td>{{ message.sent_at|custom_date:user }}</td>
29
30
                                <td>
30
31
                                        <a href="{% url 'messages_delete' message.id %}?next={{ request.path|iriencode }}">
31
 
                                                <img src="{{ MEDIA_URL }}img/delete.png" alt="delete" title="delete" />
 
32
                                                <img src="{% static 'img/delete.png' %}" alt="delete" title="delete" />
32
33
                                        </a>
33
34
                                </td>
34
35
                        </tr>