{% block head %}{% endblock %}
{% block pagetitle %}OpenDiamond Scopeserver{% endblock %}
{% if user.is_anonymous %}
Login
{% else %} Welcome {{ user }}
Logout
{% endif %}
{% block sidebar %}
Home
{% url opendiamond.scopeserver.gatekeeper.views.index as gatekeeper %} {% if gatekeeper %} {% if user.is_staff or user.collection_set.all.count %}
Gatekeeper
{% endif %} {% endif %} {% url opendiamond.scopeserver.flickr.views.index as flickr %} {% if flickr %} {% if user.is_staff or perms.flickr.search %}
Flickr
{% endif %} {% endif %} {% url opendiamond.scopeserver.mirage.views.index as mirage %} {% if mirage %} {% if user.is_staff or perms.mirage.search %}
Mirage
{% endif %} {% endif %} {% url opendiamond.scopeserver.gigapan.views.index as gigapan %} {% if gigapan %} {% if user.is_staff or perms.gigapan.search %}
GigaPan
{% endif %} {% endif %} {% if user.is_staff %}
Admin
{% endif %}
{% endblock %}
{% block content %}{% endblock %}
{% block extra_scripts %}{% endblock %}