evorepo/templates/public/developer_list.html
Dan McGee fbbcc8534a Add hover header links to the developer profiles pages
This is a lot like you can see in the Python API documentation, and
makes it easy to copy a link to a given place on a page.

Signed-off-by: Dan McGee <dan@archlinux.org>
2012-04-26 14:44:52 -05:00

69 lines
2.6 KiB
HTML

{% load pgp %}
<div id="arch-bio-toc">
<p>
{% for dev in dev_list %}
<a href="#{{ dev.username }}" title="Jump to profile for {{ dev.get_full_name }}">
{{ dev.first_name }} {{ dev.last_name }}</a> &nbsp;&nbsp;
{% endfor %}
</p>
</div>
<table class="arch-bio-entry">
{% for dev in dev_list %}
{% with dev.userprofile as prof %}
<tr>
<td class="pic pic-{{ dev.username }}">
<img src="{{ prof.picture.url }}" height="125" width="125" alt="Image for {{ prof.alias }}"/>
</td>
<td>
<h3>{{ dev.get_full_name }}{% if prof.latin_name %} ({{ prof.latin_name}}){% endif %}
<a class="headerlink" name="{{ dev.username }}" id="{{ dev.username }}" href="#{{ dev.username }}" title="Permalink">ΒΆ</a></h3>
<table class="bio bio-{{ dev.username }}">
<tr>
<th>Alias:</th>
<td>{{ prof.alias }}</td>
</tr><tr>
<th>Email:</th>
<td>{{ prof.public_email }}</td>
</tr><tr>
<th>Other Contact:</th>
<td>{{ prof.other_contact }}</td>
</tr><tr>
<th>PGP Key:</th>
<td>{% pgp_key_link prof.pgp_key %}</td>
</tr><tr>
<th>Roles:</th>
<td>{{ prof.roles }}<br />
</td>
</tr><tr>
<th>Website:</th>
<td>{% if prof.website %}<a href="{{ prof.website }}"
title="Visit the website for {{ dev.get_full_name }}">
{{ prof.website }}</a>{% endif %}</td>
</tr><tr>
<th>Occupation:</th>
<td>{{ prof.occupation }}</td>
</tr><tr>
<th>YOB:</th>
<td>{% if prof.yob %}{{ prof.yob }}{% endif %}</td>
</tr><tr>
<th>Location:</th>
<td>{% if dev.userprofile.country %}<img src="{{ dev.userprofile.country.flag }}" alt="{{ dev.userprofile.country.name }}"/> {% endif %}{{ prof.location }}</td>
</tr><tr>
<th>Languages:</th>
<td>{{ prof.languages }}</td>
</tr><tr>
<th>Interests:</th>
<td>{{ prof.interests }}</td>
</tr><tr>
<th>Favorite Distros:</th>
<td>{{ prof.favorite_distros }}</td>
</tr>
</table>
</td>
</tr>
{% endwith %}
{% endfor %}
</table>