{% extends 'base.html' %} {% block title %}Profile - {{ super() }}{% endblock %} {% import '_wtfhelpers.html' as wtf %} {% block content %}

{{ current_user.username }}

Security

{% if current_user.roles %}

Permissions

{% endif %} {% if current_user.has_role('developer') %}

Api

You have permission to push packages to the repository. Use the following API key to publish packages:

{{ wtf.quick_form(generate_api_key_form, button_map={'submit': 'primary'}, api_key={'readonly': True}) }} {% endif %} {% endblock %}