mirror of
https://github.com/kristoferssolo/FOSSDB.git
synced 2025-10-21 17:50:35 +00:00
11 lines
320 B
HTML
11 lines
320 B
HTML
{% 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 %}
|