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