~widelands-dev/widelands-website/trunk

« back to all changes in this revision

Viewing changes to templates/pybb/forum.html

  • Committer: Holger Rapp
  • Date: 2009-02-26 22:38:49 UTC
  • Revision ID: sirver@kallisto.local-20090226223849-1563ij0uuw0lz0zu
First version of widelands online help

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
{% load pybb_extras %}
3
3
{% load i18n %}
4
4
 
5
 
{% block title %}
6
 
{{ forum.name }} - {{ block.super }}
7
 
{% endblock %}
8
 
 
9
 
{% block extra_head %}
10
 
<link rel="alternate" type="application/atom+xml" title="Latest Posts on forum '{{ forum.name }}'" href="{% url pybb_feed "posts" %}{{forum.id}}/"  />
11
 
<link rel="alternate" type="application/atom+xml" title="Latest Topics on forum '{{ forum.name }}'" href="{% url pybb_feed "topics"%}{{forum.id}}/" />
12
 
{{ block.super }}
13
 
{% endblock %}
14
 
 
15
5
{% block content %}
16
 
{% include "django_messages/inlines/navigation.html" %}
17
 
<br />
18
 
<br />
19
 
<div class="box_item_model">
20
6
    <div class="forum-list">
21
 
        <span class="title"><a href="/forum/">Forum</a> &rArr; {{ forum }}</span>
22
 
        <br /> 
 
7
        <span class="title">{{ forum }}</span>
 
8
         
23
9
        <div class="index_forum">
24
 
            <table width="100%">
25
 
                <tr>
26
 
                    <td>
27
 
                        {% pybb_pagination _('Topics') %}
28
 
                    </td>
29
 
                    <td>
30
 
                        <div class="controls">
31
 
                            <a href="{% url pybb_add_topic forum.id %}">
32
 
                                <img src="{{MEDIA_URL}}/forum/img/en/new_topic.png" height="25" alt ="{% trans "New Topic" %}" style="float:right" />
33
 
                            </a>
34
 
                        </div>
35
 
                    </td>
36
 
                </tr>
37
 
            </table>
38
 
            <table cellspacing="1" width="100%">
39
 
                <tr align="center">
40
 
                    <th width="5%">&nbsp;</th>
41
 
                    <th width="40%" nowrap="nowrap" align="left">Topic</th>
42
 
                    <th             nowrap="nowrap">Creator</th>
43
 
                    <th             nowrap="nowrap">At</th>
44
 
                    <th             nowrap="nowrap">Posts</th>
45
 
                    <th             nowrap="nowrap">Views</th>
46
 
                    <th width="20%" nowrap="nowrap">Last Post</th>
47
 
                </tr>
48
 
 
49
 
                {# List all forums #}
50
 
                {% for topic in topics %}
51
 
                {% include "pybb/inlines/topic_row.html" %}
52
 
                {% endfor %}
53
 
            </table>
54
 
            <table width="100%">
55
 
                <tr>
56
 
                    <td>
57
 
                        {% pybb_pagination _('Topics') %}
58
 
                    </td>
59
 
                    <td>
60
 
                        <div class="controls">
61
 
                            <a href="{% url pybb_add_topic forum.id %}">
62
 
                                <img src="{{MEDIA_URL}}/forum/img/en/new_topic.png" height="25" alt ="{% trans "New Topic" %}" style="float:right"/>
63
 
                            </a>
64
 
                        </div>
65
 
                    </td>
66
 
                </tr>
67
 
            </table>     
 
10
           {% pybb_pagination _('Topics') %}
 
11
           <div class="controls">
 
12
               <a href="{% url pybb_add_topic forum.id %}">{% trans "New topic" %}</a>
 
13
           </div>
 
14
 
 
15
           <table cellspacing="1" width="100%">
 
16
              <tr align="center">
 
17
                 <th width="5%">&nbsp;</td>
 
18
                 <th width="40%" nowrap="nowrap" align="left">Topic</td>
 
19
                 <th             nowrap="nowrap">Creator</td>
 
20
                 <th             nowrap="nowrap">At</td>
 
21
                 <th             nowrap="nowrap">Posts</td>
 
22
                 <th             nowrap="nowrap">Views</td>
 
23
                 <th width="20%" nowrap="nowrap">Last Post</td>
 
24
              </tr>
 
25
 
 
26
              {# List all forums #}
 
27
              {% for topic in forum.topics.all %}
 
28
              {% include "pybb/inlines/topic_row.html" %}
 
29
              {% endfor %}
 
30
            </table>
 
31
           
 
32
           {% pybb_pagination _('Topics') %}
 
33
           <div class="controls">
 
34
               <a href="{% url pybb_add_topic forum.id %}">{% trans "New topic" %}</a>
 
35
           </div>
 
36
        
68
37
        </div>        
69
38
        
70
39
        <table class="legend">
71
 
            <tr>
72
 
                <td>
73
 
                    <img src="{{MEDIA_URL}}/forum/img/folder_new.png" style=":" alt="" align="middle" />
74
 
                </td>
75
 
                <td>= Unread posts</td>
76
 
                <td>
77
 
                    <img src="{{MEDIA_URL}}/forum/img/folder.png" style="" alt="" align="middle" /> 
78
 
                </td>
79
 
                <td>= No unread posts</td>
80
 
                <td>
81
 
            </tr>
 
40
           <tr>
 
41
              <td
 
42
                 <img src="{{MEDIA_URL}}/forum/img/folder_new.png" style=":" alt="" align="middle" />
 
43
              </td><td>= Unread posts</td>
 
44
              <td>
 
45
                  <img src="{{MEDIA_URL}}/forum/img/folder.png" style="" alt="" align="middle" /> 
 
46
              </td><td>= No unread posts</td>
 
47
              <td>
 
48
           </tr>
82
49
        </table>
83
50
    </div>
84
 
</div>
 
51
 
85
52
{% endblock %}
86
53
 
87
54
{% comment %}