templates/user/browse.html
author nishanth
Thu, 04 Feb 2010 23:24:20 +0530
changeset 29 8baf12083a1e
parent 28 e137b605b888
permissions -rw-r--r--
added *.db to hgignore and made database path to pytask.db in settings.py

{% 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 %}