{% extends "base.html" %} {% block main %}

Collections > {{ collection.title }} > {{ pin.caption }}

{% if pin.type == 'photo' %} {% elif pin.type == 'video' %}
Description
{{ pin.description | safe }}
{% if pin.location %}
Location
{{ pin.location.raw }} ({{ pin.location.lat }}, {{ pin.location.lng }})
{% endif %} {% if pin.places %}
Places
{% for place in pin.places %} {{ place.title }}{{ ", " if not loop.last else "" }} {% endfor %}
{% endif %} {% if pin.license %}
License
{{ pin.license }}
{% endif %} {% if pin.link %}
Link
{{ pin.link }}
{% endif %} {% if pin.type == "video" or pin.type == "audio" %}
Original Media Link
{{ pin.display.content }}
{% endif %} {% if pin.tags %}
Tags
{% for tag in pin.tags %} {{ tag.text }}{{ ", " if not loop.last else "" }} {% endfor %}
{% endif %} {% if pin.date_added %}
Date Added
{{ pin.date_added }}
{% endif %} {% if pin.date_taken %}
Date Taken
{{ pin.date_taken }}
{% endif %} {% if pin.author %}
Author
{{ pin.author }}
{% endif %} {% if pin.repository %}
Repository
{{ pin.repository }}
{% endif %} {% if pin.notes %}
Notes
{{ pin.notes }}
{% endif %} {% if pin.rights_statement %}
Rights Statement
{{ pin.rights_statement }}
{% endif %}
Historypin Link
https://www.historypin.org/en/person/{{ user.id }}/explore/pin/{{ pin.id }}
{% endblock %}