10 lines
246 B
HTML
10 lines
246 B
HTML
{% extends "base.html" %}
|
|
{%block title%}Your Profile{%endblock%}
|
|
|
|
{%block content %}
|
|
<p>Welcome, {{ user.username }}</p>
|
|
|
|
<a href="{%url profiles.views.edit %}">Edit profile</a>
|
|
<a href="{%url profiles.views.invites %}">Invites</a>
|
|
{%endblock%}
|