Putting some content in the dashboard badge page

This commit is contained in:
Andrew Hayward 2013-06-07 14:53:05 +01:00
Родитель 5897c238cb
Коммит 0a9b4e56d5
1 изменённых файлов: 22 добавлений и 0 удалений

Просмотреть файл

@ -5,4 +5,26 @@
{%- endblock %}
{% block activity %}
<div class="row-fluid">
<div class="span4">
<img src="{{ badge.image }}">
</div>
<div class="span8">
<p>
<strong>Issued by:</strong>
{% if badge.program.issuer.url -%}
<a href="{{ badge.program.issuer.url }}">
{%- endif -%}
{{ badge.program.issuer.name }}
{%- if badge.program.issuer.url -%}
</a>
{%- endif -%}
</p>
<p><strong>Issued to:</strong> {{ current.email }}</p>
<h3>What is this badge about?</h3>
<p class="description">{{ badge.description }}</p>
</div>
</div>
{% endblock %}