{% extends 'base.html' %} {% from 'bootstrap5/pagination.html' import render_pagination %} {% from 'bootstrap5/form.html' import render_form, render_field %} {% from 'bootstrap5/utils.html' import render_icon %} {% block title %}{{ photo.author.name }}'s Photo{% endblock %} {% block content %}
{% if current_user.is_authenticated %} {% if current_user.is_collecting(photo) %}
{% else %}
{% endif %} {% else %}
{% endif %} {{ render_icon('share-fill') }} {% if current_user == photo.author or current_user.can('MODERATE') %} {{ render_icon('trash-fill') }} {% endif %} {% if current_user.is_authenticated and current_user != photo.author %}
{% endif %}

{{ render_icon('clock-fill') }} Upload at {{ photo.created_at }}

{% include 'main/_comment.html' %}
{% include 'main/_photo_sidebar.html' %}
{% if current_user.is_authenticated %} {% endif %} {% endblock %}