{% extends request.is_ajax|yesno:"base_ajax.html,base_rigs.html" %} {% load static %} {% load linkornone from filters %} {% block js %} {% endblock %} {% block content %} {% if not request.is_ajax and object.pk == user.pk %}
{% endif %}
First Name
{{object.first_name}}
Last Name
{{object.last_name}}
Email
{{object.email}}
Last Login
{{object.last_login|date:"d/m/Y H:i"}}
Date Joined
{{object.date_joined|date:"d/m/Y H:i"}}
Initials
{{object.initials}}
Phone
{{object.phone|linkornone:'tel'}}
{% if not request.is_ajax and object.pk == user.pk %}
Personal iCal Details
API Key
{% if user.api_key %} {{user.api_key}} {% else %} No API Key Generated {% endif %} {% if user.api_key %}Reset API Key{% else %}Generate API Key{% endif %}
Calendar Options
Calendar URL
{% if user.api_key %}
Click here for instructions on adding to google calendar.
To sync from Google Calendar to mobile device, visit this page on your device and tick "RIGS Calendar".
{% else %}
No API Key Generated
{% endif %}
{% endif %}

Events

{% with object.latest_events as events %} {% include 'partials/event_table.html' %} {% endwith %} {% endblock %}