{% extends "base.html" %} {% load static %} {% load i18n %} {% load django_th_extras %} {% block title %}{% trans "Profile" %} - Trigger Happy{% endblock %} {% block content %}
{% trans "Profile Details" %}
{% trans "First name" %} {% trans "Last name" %} {% trans "Email" %} {% trans "Last connection" %} {% trans "Created" %}
{{ object.first_name }} {{ object.last_name }} {{ object.email }} {{ object.last_login }} {{ object.date_joined }}
{% endblock %}