templates/user/browse.html
author nishanth
Fri, 05 Feb 2010 15:42:35 +0530
changeset 32 78adf44d895d
parent 28 e137b605b888
permissions -rw-r--r--
added seed_db in utils that seeds database with random users and tasks .

{% extends 'base.html' %}
{% block content %}
    List of all the users:<br />
    {% for user in userlist %}
        <a href="/user/view/uid={{ user.id }}">{{ user.username }}</a><br />
    {% endfor %}
{% endblock %}