FossilRepo
{% extends "base.html" %} {% block title %}Profile — Fossilrepo{% endblock %}
{% block content %}
{{ user.username|make_list|first|upper }}
{% if user.get_full_name %}{{ user.get_full_name }}{% else %}{{ user.username }}{% endif %}
{% if user_profile.handle %}
@{{ user_profile.handle }}
{% endif %}
{{ user.email }}
Profile Info
- Full Name
- {{ user.get_full_name|default:"Not set" }}
- Handle
- {% if user_profile.handle %}@{{ user_profile.handle }}{% else %}Not set{% endif %}
- {{ user.email|default:"Not set" }}
- Location
- {{ user_profile.location|default:"Not set" }}
- Website
- {% if user_profile.website %} {{ user_profile.website }} {% else %}Not set{% endif %}
- Bio
- {{ user_profile.bio|default:"Not set"|linebreaksbr }}
SSH Keys
Manage Keys
{% for key in ssh_keys %}
{% endfor %}
{% else %}
{{ key.title }}
{{ key.fingerprint }}
{{ key.key_type|upper }} · Added {{ key.created_at|timesince }} ago
{% if key.last_used_at %}· Last used {{ key.last_used_at|timesince }} ago{% endif %}
No SSH keys added yet. Add one to clone and push over SSH.
{% endif %}
Notification Preferences
Edit Preferences- Delivery Mode
- {{ notif_prefs.delivery_mode }}
- Events
- {% if notif_prefs.notify_checkins %}Checkins{% endif %} {% if notif_prefs.notify_tickets %}{% if notif_prefs.notify_checkins %}, {% endif %}Tickets{% endif %} {% if notif_prefs.notify_wiki %}{% if notif_prefs.notify_checkins or notif_prefs.notify_tickets %}, {% endif %}Wiki{% endif %} {% if notif_prefs.notify_releases %}{% if notif_prefs.notify_checkins or notif_prefs.notify_tickets or notif_prefs.notify_wiki %}, {% endif %}Releases{% endif %} {% if notif_prefs.notify_forum %}{% if notif_prefs.notify_checkins or notif_prefs.notify_tickets or notif_prefs.notify_wiki or notif_prefs.notify_releases %}, {% endif %}Forum{% endif %} {% if not notif_prefs.notify_checkins and not notif_prefs.notify_tickets and not notif_prefs.notify_wiki and not notif_prefs.notify_releases and not notif_prefs.notify_forum %}None{% endif %}
Personal Access Tokens
Generate Token
{% for token in tokens %}
{% endfor %}
{% else %}
{{ token.name }}
{{ token.token_prefix }}...
Scopes: {{ token.scopes }} · Created {{ token.created_at|timesince }} ago
{% if token.last_used_at %}· Last used {{ token.last_used_at|timesince }} ago{% endif %}
{% if token.expires_at %}· Expires {{ token.expires_at|date:"M j, Y" }}{% endif %}
No personal access tokens. Generate one to authenticate with the API or CLI.
{% endif %}
{% endblock %}