{% extends "base.html" %} {% block content %} {% if not asset %}
{{ error_message }}
{% else %}
{{ asset.file_name }}

{{ asset.file_name }}

{% if asset.captured_display %}

Captured: {{ asset.captured_display }}

{% endif %} {% if alt_text %}

Current alt text

{{ alt_text }}

{% endif %} {% if asset.location or (asset.latitude and asset.longitude) %}

Location

{% if asset.location %}

{{ asset.location }}

{% endif %} {% if asset.latitude and asset.longitude %}

{{ "%.5f"|format(asset.latitude) }}, {{ "%.5f"|format(asset.longitude) }}

{% endif %}
{% endif %} {% if error_message %}
{{ error_message }}
{% endif %}
{% endif %} {% endblock %}