FOSSDB/templates/account/profile.html
Kristofers Solo ffa9827f44 Modified User model
Replaced `id` with `uuid` and added profile picture field
2023-06-27 13:57:24 +00:00

11 lines
320 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "layout.html" %}
{% load static %}
{% block title %}{{ title }}{% endblock %}
{% block meta %}{% endblock %}
{% block content %}
<h1>{{ user.username }}</h1>
<img src="{{ user.profile_picture.url }}"
alt="{{ user.username }}s profile picture" />
<p>{{ user.email }}</p>
{% endblock %}