{% extends "user_image/index.html" %} {% block inline_css %} {{block.super}} {% include 'tag/list.css' %} {% include 'job/status.css' %} {% include 'form_ajax.css' %} {% endblock %} {% block javascript %} {{ block.super }} {% include 'form_ajax.js' %} {% include 'comment/comment.js' %} {% include 'tag/tag.js' %} {% endblock %} {% block title %} {{block.super}} > {% if image.original_file_name %} {% include 'user_image/filename.html' with filename=image.original_file_name %} {% else %} no name {% endif %} {% endblock %} {% block content %}
{% if user == image.user %}
Edit Image
{% endif %}

{{ image.description }}
{% if calib %} {% with nearby_images=image.get_neighbouring_user_images %} {% if nearby_images %}

Nearby Images

(View All) {% include 'user_image/image_set.html' with images=nearby_images|slice:'6' thumbnail_size='small' %}
{% endif %} {% endwith %} {% endif %}

Comments

{% include 'comment/list.html' with comments=image.comment_receiver.comments.all next=request.path %} {% include 'comment/form.html' with comment_form=comment_form category='user_image' recipient_id=image.comment_receiver.id next=request.path %}
{% endblock %}