evorepo/templates/public/userlist.html
Dan McGee 0b930fd921 Convert all usages of flag icons to new sprite
This uses a new template tag to avoid repeating construction of the
necessary HTML element all over the place. The site should look exactly
as it did before, except now you don't have to download 20+ images to
see some pages.

Signed-off-by: Dan McGee <dan@archlinux.org>
2013-01-16 00:36:17 -06:00

22 lines
579 B
HTML

{% extends "base.html" %}
{% load static from staticfiles %}
{% load cache %}
{% block title %}Arch Linux - {{ user_type }}{% endblock %}
{% block head %}<link rel="stylesheet" type="text/css" href="{% static "flags/fam.css" %}" media="screen, projection" />{% 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 %}