~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to templates/pybb/inlines/display_category.html

  • Committer: Shevonar
  • Date: 2012-04-19 19:46:21 UTC
  • mto: This revision was merged to the branch mainline in revision 330.
  • Revision ID: infomh@anmaruco.de-20120419194621-lac98edodt220fux
Added new design for forums

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
{% comment %}
2
2
   vim:ft=htmldjango:
3
3
 
4
 
   How to display a Forum list in the index page
 
4
   How to display a Forum list
5
5
{% endcomment %}
6
 
<div class="box_item_model index_category">
7
 
    <h3 class="title">{{category.cat}} </h3>
8
 
    <table class="full_site" cellspacing="1">
9
 
        <tr class="show_center" cellspacing="0">
10
 
            <td width="5%" class="info_line show_left">&nbsp;</td>
11
 
            <td width="57%" nowrap="nowrap" class="info_line show_left">Forum</td>
12
 
            <td width="9%" nowrap="nowrap" class="info_line show_left">Topics</td>
13
 
            <td width="9%" nowrap="nowrap" class="info_line show_left">Posts</td>
14
 
            <td width="20%" nowrap="nowrap" class="info_line show_left">Last Post</td>
15
 
        </tr>
16
 
        {# List all forums #}
17
 
        {% for forum in category.forums %}
18
 
        {% include 'pybb/inlines/forum_row.html' %}
19
 
        {% endfor %}
20
 
    </table>
21
 
</div>
22
 
 
 
6
 
 
7
{% load humanize %}
 
8
{% load pybb_extras %}
 
9
{% load wlprofile %}
 
10
{% load custom_date %}
 
11
 
 
12
<table class="forum">
 
13
        {# List all forums #}
 
14
        {% for forum in category.forums.all %}
 
15
        <tr class="{% cycle 'odd' 'even' %}">
 
16
                <td class="forumIcon center">
 
17
                {% if forum|pybb_has_unreads:user %}
 
18
                        <img src="{{ MEDIA_URL }}/forum/img/folder_big_work_star.png" style="width: 48px; height:48px; margin: 0px;" alt="" />
 
19
                {% else %}
 
20
                        <img src="{{ MEDIA_URL }}/forum/img/folder_big_work.png" style="width: 48px; height:48px; margin: 0px;" alt="" />
 
21
                {% endif %}
 
22
                </td>
 
23
                <td class="forumTitle">
 
24
                        <a href="{{ forum.get_absolute_url }}">{{ forum.name }}</a>
 
25
                        <br />
 
26
                        <span class="small">{{ forum.description }}</span>
 
27
                </td>
 
28
                <td class="forumCount center small" style="width: 120px;">
 
29
                        Topics: {{ forum.topics.count }}<br/>
 
30
                        Posts: {{ forum.posts.count }}
 
31
                </td>
 
32
                <td class="lastPost">
 
33
                {%if forum.last_post %}
 
34
                        <a href="{{forum.last_post.get_absolute_url}}">{{ forum.last_post.topic.name }}</a><br />
 
35
                        <span class="small">by {{ forum.last_post.user|user_link }}<br />
 
36
                        on {{ forum.last_post.created|custom_date:user}}</span>
 
37
                {% else %}
 
38
                        &nbsp;
 
39
                {% endif %}
 
40
                </td>
 
41
        </tr>
 
42
        {% endfor %}
 
43
</table>