{% extends "base.html" %}
{% load static %}
{% load django_bootstrap5 %}
{% block title %}BMA Settings{% endblock title %}
{% block main_content %}
BornHack Username |
{{ user.username }} |
BMA UUID |
{{ user.pk }} |
BMA Handle |
{{ user.handle }} |
BMA Member Since |
{{ user.created_at }} |
Description |
{{ user.description|default:"N/A" }}
|
API Clients |
Name |
Access Tokens |
{% for client in request.user.oauth2_provider_application.all %}
{{ client.name }} |
{{ client.accesstoken_set.count }} |
{% endfor %}
|
Update
{% endblock main_content %}