{% extends 'base.html' %} {% load i18n fontawesome_5 %} {% block body %}
| {% trans 'Current token' %} | {{ user.api_token.token }} | |
|---|---|---|
| {% trans 'Authenticated by admins' %} | {% if user.api_token.is_active %}{% fa5_icon 'check-circle' %} | {% else %}{% fa5_icon 'hourglass-half' %} | {% endif %}
| {% trans 'Valid until' %} | {{ user.api_token.valid_until|default_if_none:"-" }} |