~widelands-dev/widelands-website/trunk

« back to all changes in this revision

Viewing changes to templates/mainpage/online_users.html

  • Committer: kaputtnik
  • Date: 2019-05-30 18:20:02 UTC
  • mto: This revision was merged to the branch mainline in revision 540.
  • Revision ID: kaputtnik-20190530182002-g7l91m1xo28clghv
adjusted README; first commit on the new server

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
{% load wlprofile %}
2
 
 
3
 
{% 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>
12
 
{% endif %}