- Username
- {{ user.get_username }}
- Email
- {{ user.email }}
- First name
- {{ user.get_short_name }}
- Last Name
- {{ user.last_name }}
- Last login
- {{ user.last_login }}
- Created
- {{ user.date_joined }}
Add token
Description |
Created date |
Expiration date |
Key |
Action |
{% for token in tokens %}
{{ token.description }} |
{{ token.created }} |
{{ token.expires }} |
{{ token }} |
|
{% endfor %}
- Notifications
-
{% if user.profile.notification_enabled %}
Enabled
Disable
{% else %}
Disabled
Enable
{% endif %}
{% if request.user.is_superuser %}
Subscribe to a particular service
Service |
Action |
{% for service in request.user.profile.subscribed_services_notification.all %}
{{ service.name }} |
|
{% endfor %}
{% endif %}