datatracker/ietf/templates/my/my.html
Bill Fenner cb94159896 Allow login/logout/password change. The initial view once logged
in (unless it's a forced login) will be the (incomplete) "my" view.
Username and logout link are in the upper right corner while logged
in.
 - Legacy-Id: 163
2007-05-24 20:18:11 +00:00

13 lines
303 B
HTML

{% extends "base.html" %}
{% block content %}
<p>
Hello, {{ me }}!
<h1>Internet Drafts that you Author (probably useless but hey)</h1>
<ul>
{% for doc in me.idauthors_set.all %}
<li>{{ doc.document.filename }}: {{ doc.document.status }} / {{ doc.document.idstate }}
{% endfor %}
</ul>
{% endblock %}