medor.www
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

contributor_detail.html
text/html

Download raw (484 bytes)

{% extends "base3.html" %}

{% load thumbnail %}


{% block content %}
<h2>{{ object.name }}</h2>

{% if object.image %}
<img src="{% thumbnail object.image 400x400 %}" />
{% endif %}

{% if object.biography %}
<div>{{ object.biography|safe }}</div>
{% endif %}

<h3>Contributions</h3>

<ul>
{% for rel in object.contribution_set.all %}
<li><a href="{{ rel.content_object.get_absolute_url }}">{{rel.content_object|safe }}</a> ({{ rel.role }})</li>
{% endfor %}
</ul>


{% endblock %}