~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to templates/pybb/last_posts.html

  • Committer: franku
  • Date: 2016-04-18 13:29:23 UTC
  • mto: This revision was merged to the branch mainline in revision 409.
  • Revision ID: somal@arcor.de-20160418132923-bfzkb5mvdr7l8mz4
added migrations to each app

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
        <div class="columnModuleBox">
10
10
                <ul>
11
11
                        {% for post in posts %}
12
 
                                <li>
13
 
                                        {{ post.topic.forum.name }}<br />
14
 
                                        <a href="{{ post.get_absolute_url }}" title="{{ post.topic.name }}">{{ post.topic.name|pybb_cut_string:30 }}</a><br />
15
 
                                        by {{ post.user|user_link }} {{ post.created|minutes }} ago
16
 
                                </li>
 
12
                        <li>
 
13
                                {{ post.topic.forum.name }}<br />
 
14
                                <a href="{{ post.get_absolute_url }}" title="{{ post.topic.name }}">{{ post.topic.name|pybb_cut_string:30 }}</a><br />
 
15
                                by <a href="{% url 'profile_view' post.user %}">{{post.user.username}}</a> {{ post.created|minutes }} ago
 
16
                        </li>
17
17
                        {% endfor %}
18
18
                </ul>
19
19
        </div>