{% extends 'user_image/index.html' %}
{% block inline_css %}
{{ block.super }}
{% endblock %}
{% block title %}
{{ block.super }}
{% with form=location_search_form %}
{% if 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 %}
{% endwith %}
{% endblock %}
{% block search_settings %}
RA, Dec: ({{ location_search_form.ra }}, {{ location_search_form.dec }}) degrees
Radius: {{ location_search_form.radius }} degrees
{% endblock %}