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
13 lines
303 B
HTML
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 %}
|