Remove unused profile templates

- Legacy-Id: 6829
This commit is contained in:
Ole Laursen 2013-12-07 12:16:05 +00:00
parent 7738f35283
commit ad1f11e9a3
2 changed files with 0 additions and 42 deletions

View file

@ -1,11 +0,0 @@
{# Copyright The IETF Trust 2007, All Rights Reserved #}
{% extends "base.html" %}
{% block content %}
<h1>User information</h1>
<p>User name: {{ user.username }}<br />
Roles/Groups: {{ user.groups.all|join:", "|default:"(none)" }}<br />
Person: {{ user.get_profile.person|default:"?" }} {% if user.get_profile.person %}({{user.get_profile.person.person_or_org_tag}}){% endif %}<br />
IESG Login ID: {{ user.get_profile.iesg_login_id|default:"(none)" }} </p>
{% endblock %}

View file

@ -1,31 +0,0 @@
{# Copyright The IETF Trust 2007, All Rights Reserved #}
{% extends "base.html" %}
{% block morecss %}
table.userProfile th {
text-align: left;
}
{% endblock %}
{% block title %}Profile for {{ user }}{% endblock %}
{% block content %}
<h1>User information</h1>
<table class="userProfile">
<tr>
<th>User name:</th>
<td>{{ user.username }}</td>
</tr>
<tr>
<th>Person:</th>
<td>{{ person.name|default:"?" }}</td>
</tr>
{% for role in roles %}
<tr>
<th>{% if forloop.first %}Roles:{% endif %}</th>
<td>{{ role.name }} in {{ role.group.name }} ({{ role.group.type }})</td>
</tr>
{% endfor %}
</table>
{% endblock %}