evorepo/templates/public/userlist.html
Dan McGee 5b63c29fe1 Show full names on developer user list pages
The old display format doesn't really make sense. Also fix the invalid
HTML generated by the PGP tag link- we need to escape using & inside
the generated URLs.

Signed-off-by: Dan McGee <dan@archlinux.org>
2011-11-15 14:04:39 -06:00

19 lines
408 B
HTML

{% extends "base.html" %}
{% load cache %}
{% block title %}Arch Linux - {{ user_type }}{% endblock %}
{% block content %}
{% cache 600 dev-tu-profiles user_type %}
<div id="dev-tu-profiles" class="box">
<h2>Arch Linux {{user_type}}</h2>
<p>{{description}}</p>
{% with users as dev_list %}
{% include 'public/developer_list.html' %}
{% endwith %}
</div>
{% endcache %}
{% endblock %}