~widelands-dev/widelands-website/trunk

« back to all changes in this revision

Viewing changes to templates/pybb/index.html

  • Committer: franku
  • Date: 2016-05-15 14:41:54 UTC
  • mto: This revision was merged to the branch mainline in revision 409.
  • Revision ID: somal@arcor.de-20160515144154-00m3tiibyxm0nw2w
added the old threadedcomments app as wildelands app

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
{% load pybb_extras %}
3
3
 
4
4
{% block content %}
5
 
{% include "django_messages/inlines/navigation.html" %}
6
 
<br />
7
 
<br />
8
 
<div class="box_item_model">
 
5
<h1>Forums</h1>
 
6
 
9
7
{% for category in cats %}
10
 
    {% include 'pybb/inlines/display_category.html' %}
 
8
<div class="blogEntry">
 
9
        <h3><a href="{{category.get_absolute_url}}" class="invertedColor">{{category.name}}</a></h3>
 
10
        {% include 'pybb/inlines/display_category.html' %}
 
11
</div>
11
12
{% endfor %}
12
13
 
 
14
<div class="center green">
 
15
        <img src="{{ MEDIA_URL }}forum/img/folder_big_work_star.png" style="width: 48px; height:48px; margin: 0px;" alt="" class="middle" />
 
16
        = Unread posts
 
17
        <img src="{{ MEDIA_URL }}forum/img/folder_big_work.png" style="width: 48px; height:48px; margin: 0px;" alt="" class="middle" /> 
 
18
        = No unread posts
 
19
</div>
 
20
 
 
21
  {% comment %}
13
22
<table class="legend">
14
23
  <tr>
15
24
     <td>
16
 
        <img src="{{MEDIA_URL}}/forum/img/folder_new_big.png" style="width: 48px; height:48px; margin: 0px;" alt="" align="middle" />
 
25
        <img src="{{ MEDIA_URL }}forum/img/folder_new_big.png" style="width: 48px; height:48px; margin: 0px;" alt="" align="middle" />
17
26
     </td>
18
27
     <td>= Unread posts</td>
19
28
     <td>
20
 
         <img src="{{MEDIA_URL}}/forum/img/folder_big.png" style="width: 48px; height:48px; margin: 0px;" alt="" align="middle" /> 
 
29
         <img src="{{ MEDIA_URL }}forum/img/folder_big.png" style="width: 48px; height:48px; margin: 0px;" alt="" align="middle" /> 
21
30
     </td><td>= No unread posts</td>
22
31
  </tr>
23
 
  {% comment %}
 
32
 
24
33
  <tr>
25
34
      <td>
26
 
          <img src="{{MEDIA_URL}}/forum/img/folder_locked_big.png" style="width: 48px; height:48px; margin: 0px;" alt="" align="middle" />
 
35
          <img src="{{ MEDIA_URL }}forum/img/folder_locked_big.png" style="width: 48px; height:48px; margin: 0px;" alt="" align="middle" />
27
36
      </td><td>= Locked topic</td>
28
37
      <td>
29
 
          <img src="{{MEDIA_URL}}/forum/img/folder_new_locked_big.png" style="width: 48px; height:48px; margin: 0px;" alt="" align="middle" />
 
38
          <img src="{{ MEDIA_URL }}forum/img/folder_new_locked_big.png" style="width: 48px; height:48px; margin: 0px;" alt="" align="middle" />
30
39
      </td><td>= Unread posts in locked topic</td>
31
40
  </tr>
 
41
</table>
32
42
  {% endcomment %}
33
 
</table>
34
 
<div>
 
43
 
35
44
{% endblock %}
36