templates/user/browse.html
author anoop
Wed, 17 Feb 2010 19:28:18 +0530
changeset 43 b5b9a4fc508f
parent 28 e137b605b888
permissions -rw-r--r--
added template registration/activate.html required by django-registration.

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