2016-11-20 09:40:49 +00:00
|
|
|
{% extends "core/base.jinja" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{% trans user_name=profile.get_display_name() %}{{ user_name }}'s pictures{% endtrans %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2017-08-02 18:12:36 +00:00
|
|
|
{% for a in albums %}
|
2016-11-30 11:58:52 +00:00
|
|
|
<div style="padding: 10px">
|
2017-08-02 18:12:36 +00:00
|
|
|
<h4>{{ a.name }}</h4>
|
2016-11-30 11:58:52 +00:00
|
|
|
<hr>
|
2017-08-02 18:12:36 +00:00
|
|
|
{% for picture in pictures[a.id] %}
|
2016-11-30 11:58:52 +00:00
|
|
|
<div class="picture">
|
2017-08-02 18:12:36 +00:00
|
|
|
<a href="{{ url("sas:picture", picture_id=picture.id) }}#pict">
|
|
|
|
<img src="{{ picture.get_download_thumb_url() }}" alt="{{ picture.get_display_name() }}" style="max-width: 100%"/>
|
2016-11-30 11:58:52 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
2017-02-22 23:27:53 +00:00
|
|
|
{% endfor %}
|
2016-11-20 22:53:41 +00:00
|
|
|
</div>
|
2017-02-22 23:27:53 +00:00
|
|
|
{% endfor %}
|
2016-11-20 09:40:49 +00:00
|
|
|
{% endblock %}
|
|
|
|
|