~widelands-dev/widelands-website/trunk

« back to all changes in this revision

Viewing changes to templates/mainpage/online_users.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:
1
 
{% load wlprofile %}
2
 
 
3
1
{% if users %}
4
 
    <h3 class="box_title">Currently online</h3>
5
 
    <div class="box_content"> 
6
 
        <ul>
7
 
            {% for user in users %}
8
 
            <li><a href="{% url profile_view user %}">{{user.username}}</a></li>
9
 
            {% endfor %}
10
 
        </ul>
11
 
    </div>
 
2
    <ul>
 
3
    {% for user in users %}
 
4
        <li>{{user.username}}</li>
 
5
    {% endfor %}
 
6
    </ul>
12
7
{% endif %}