Files
caminus/templates/profiles/profile.html
2012-02-19 22:30:10 -05:00

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%}