Reorganise the file structure into a project tree

This commit is contained in:
2011-03-11 12:58:50 +00:00
parent 58b1691638
commit 3686aa7523
226 changed files with 7 additions and 5 deletions

View File

@@ -0,0 +1,15 @@
{% extends "base.html" %}
{% block title %}User Lookup List{% endblock %}
{% block content %}
<p>More than one user was found matching your criteria:</p>
<ul>
{% for user in users %}
<li><a href="{% url sso.views.user_view user.username %}">{{ user.username }}</a></li>
{% endfor %}
</ul>
{% endblock %}