{% extends 'base.html' %} {% block title %}RIGS Profile {{object.pk}}{% endblock %} {% block content %}

{{object.name}}

{% if object.pk == user.pk %} {% endif %}
First Name
{{object.first_name}}
Last Name
{{object.last_name}}
Email
{{object.email}}
Last Login
{{object.last_login}}
Date Joined
{{object.date_joined}}
Initials
{{object.initials}}
Phone
{{object.phone}}
{% if object.pk == user.pk %}

Personal iCal Details

API Key
{% if user.api_key %} {{user.api_key}} {% else %} No API Key Generated {% endif %}
Calendar URL
{% if user.api_key %}
http{{ request.is_secure|yesno:"s,"}}://{{ request.get_host }}{% url 'ics_calendar' api_pk=user.pk api_key=user.api_key %}
Click here to add to google calendar.
To sync from google calendar to mobile device, visit this page on your device and tick "PyRIGS Calendar".
{% else %}
No API Key Generated
{% endif %}
{% endif %}
{% endblock %}