{% extends 'base.html' %} {% block inline_css %} {{block.super}} {% include 'user_image/image_set.css' %} {% include 'view_menu.css' %} {% endblock %} {% block javascript %} {{ block.super }} {% endblock %} {% block title %} Search {% if search_category == 'tag' and tags %} > Tags: {% for tag in tags %} {{ tag.text }}{% if not forloop.last %},{% endif %} {% endfor %} {% endif %} {% if search_category == 'user' and display_user %} > User: {% include 'user/display_name.html' with user=display_user %} {% endif %} {% if search_category == 'location' and form.ra.data and form.dec.data and form.radius.data %} > Location: center ({{ form.ra.data }}, {{ form.dec.data }}); radius {{ form.radius.data }} deg {% endif %} {% if search_category == 'image' and image %} > Nearby: {{ image.original_file_name }} {% endif %} {% endblock %} {% block content %}