{% extends "base.html" %} {% load static %} {% load tags %} {% load cache %} {% load humanize %} {% load tags %} {% block title %} {% if user == request.user %} - Dashboard{% else %} - User: {{ user.username }}{% endif %} {% endblock %} {% block content %}

{% cache 3600 observations-avatar user.email %} {% endcache %} {{ user.displayname }}

{% if stations %}
{% include 'includes/stations_table.html' with show_client_version=True %}
{% else %}

{{ user.displayname }} is not an owner of any ground stations.

{% endif %} {% if user == request.user %} {% endif %}
{% if observations %}
{% include 'includes/observations_table.html' %}
{% else %}

{{ user.displayname }} is not an author of any observation.

{% endif %} {% if can_schedule and user == request.user %} {% endif %}
{% if user == request.user %} {% endif %} {% include 'includes/satellite.html' %} {% endblock content %} {% block javascript %} {% endblock javascript %}