~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to templates/pybb/category.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:
1
1
{% extends 'pybb/base.html' %}
2
2
{% load pybb_extras %}
 
3
{% load static %}
3
4
 
4
5
{% block content_header %}
5
6
    <h1>Category: {{category.name}}</h1>
13
14
</div>
14
15
 
15
16
<div class="center green">
16
 
        <img src="{{ MEDIA_URL }}forum/img/folder_big_work_star.png" style="width: 48px; height:48px; margin: 0px;" alt="" class="middle" />
 
17
        <img src="{% static 'forum/img/folder_big_work_star.png' %}" style="width: 48px; height:48px; margin: 0px;" alt="" class="middle" />
17
18
        = Unread posts
18
 
        <img src="{{ MEDIA_URL }}forum/img/folder_big_work.png" style="width: 48px; height:48px; margin: 0px;" alt="" class="middle" /> 
 
19
        <img src="{% static 'forum/img/folder_big_work.png' %}" style="width: 48px; height:48px; margin: 0px;" alt="" class="middle" /> 
19
20
        = No unread posts
20
21
</div>
21
22
{% endblock %}