blob: 197346c3acef1fb297c1be361f300ca39459c6d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{% extends "base.html" %}
{% load cache %}
{% block title %}{{ BRANDING_DISTRONAME }} - {{ user_type }}{% endblock %}
{% block content %}
{% cache 600 dev-tu-profiles user_type %}
<div id="dev-tu-profiles" class="box">
<h2>{{BRANDING_DISTRONAME}} {{user_type}}</h2>
<p>{{description}}</p>
{% with users as dev_list %}
{% include 'public/developer_list.html' %}
{% endwith %}
</div>
{% endcache %}
{% endblock %}
|