Skip to content

Commit b2abfca

Browse files
committed
Use new look for /ann/nomcom/, /iesg/ann/, /accounts/profile/, and the 404/500 pages
- Legacy-Id: 2021
1 parent 8027025 commit b2abfca

8 files changed

Lines changed: 32 additions & 159 deletions

File tree

ietf/templates/404.html

Lines changed: 6 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,17 @@
11
{# Copyright The IETF Trust 2007, All Rights Reserved #}
2-
{% extends "base.html" %}
3-
{% load versiontags %}
2+
{% extends "idrfc/base.html" %}
43

54
{% block content %}
6-
<center>
7-
<img src="/images/ietflogo2e.gif" height="80" width="140">
8-
<br clear=all>
95

10-
<h2>The Internet Engineering Task Force</h2>
11-
<table border=0 cellspacing=5 cellpadding=5>
6+
<img src="/images/ietflogo2e.gif" height="80" width="140"/>
127

13-
<br>
14-
<center><img alt="" src="/images/blue-line.jpg"></center>
15-
<br clear=all>
168
<h2>The page you were looking for couldn't be found.</h2>
17-
<div style="width:50%">
18-
The requested URL was not found on this server. If you entered the URL
19-
manually please check your spelling and try again.
20-
</div>
21-
<br>
22-
<br>
239

24-
If you think this is a server error, please contact <a
25-
href="mailto:webtools@ietf.org">webtools@ietf.org</a>.
2610

27-
<br>
28-
<br>
29-
<!--
30-
<center><img alt="Blue Line" src="/images/blue-line.jpg"></center>
31-
<br clear=all>
32-
The IETF is an organized activity of the <a href="http://www.isoc.org"><img alt="ISOC" src="/images/isoc-small.gif" hspace="3" border="0"></A>
11+
<p> The requested URL was not found on this server. If you entered the URL
12+
manually please check your spelling and try again.</p>
3313

34-
<br>
35-
36-
<hr>
37-
<i>The <A HREF="/secretariat.html">IETF Secretariat</A> is hosted by the NeuStar Secretariat Services, a wholly owned subsidiary of <a href="http://www.neustar.biz/"><img src="/images/NS_logo_100px.gif" alt="NeuStar Logo" border="0"/></a></i>
38-
-->
14+
<p>If you think this is a server error, please contact <a
15+
href="mailto:webtools@ietf.org">webtools@ietf.org</a>.</p>
3916
{% endblock %}
4017

41-
{% block footer %}
42-
<hr/>
43-
<div style="width: 100%; height: 1em; font-size: 9pt; font-style: italic;">
44-
<span style="float: left;">Made with <a href="http://www.djangoproject.com/">django</a></span>
45-
<span style="float: right;">v{% version_num %}, {% revision_date %} - <a href="mailto:webtools@ietf.org">webtools@ietf.org</a></span>
46-
</div>
47-
{% endblock %}

ietf/templates/500.html

Lines changed: 6 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,15 @@
11
{# Copyright The IETF Trust 2007, All Rights Reserved #}
2-
{% extends "base.html" %}
3-
{% load versiontags %}
2+
{% extends "idrfc/base.html" %}
43

54
{% block content %}
6-
<center>
7-
<img src="/images/ietflogo2e.gif" height="80" width="140">
8-
<br clear=all>
95

10-
<h2>The Internet Engineering Task Force</h2>
11-
<table border=0 cellspacing=5 cellpadding=5>
6+
<img src="/images/ietflogo2e.gif" height="80" width="140">
127

13-
<br>
14-
<center><img alt="" src="/images/blue-line.jpg"></center>
15-
<br clear=all>
168
<h2>Internal Server Error.</h2>
17-
<div style="width:50%">
18-
The server encountered an internal error and was
19-
unable to complete your request. Either the server is
20-
overloaded or there was an error in a script used to
21-
generate the requested page.
22-
</div>
23-
<br>
24-
<br>
25-
Please contact <a href="mailto:webtools@ietf.org">webtools@ietf.org</a>. <br>
26-
<br>
27-
<!--
28-
<center><img alt="Blue Line" src="/images/blue-line.jpg"></center>
29-
<br clear=all>
30-
The IETF is an organized activity of the <a href="http://www.isoc.org"><img alt="ISOC" src="/images/isoc-small.gif" hspace="3" border="0"></A>
319

32-
<br>
33-
34-
<hr>
35-
<i>The <A HREF="/secretariat.html">IETF Secretariat</A> is hosted by the NeuStar Secretariat Services, a wholly owned subsidiary of <a href="http://www.neustar.biz/"><img src="/images/NS_logo_100px.gif" alt="NeuStar Logo" border="0"/></a></i>
36-
-->
37-
{% endblock %}
10+
<p>The server encountered an internal error and was unable to complete
11+
your request. Either the server is overloaded or there was an
12+
error in a script used to generate the requested page.</p>
3813

39-
{% block footer %}
40-
<hr/>
41-
<div style="width: 100%; height: 1em; font-size: 9pt; font-style: italic;">
42-
<span style="float: left;">Made with <a href="http://www.djangoproject.com/">django</a></span>
43-
<span style="float: right;">v{% version_num %}, {% revision_date %} - <a href="mailto:webtools@ietf.org">webtools@ietf.org</a></span>
44-
</div>
14+
<p>Please contact <a href="mailto:webtools@ietf.org">webtools@ietf.org</a>.</p>
4515
{% endblock %}

ietf/templates/announcements/announcement_detail.html

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
11
{# Copyright The IETF Trust 2007, All Rights Reserved #}
2-
{% extends "base.html" %}
2+
{% extends "idrfc/base.html" %}
33
{% load ietf_filters %}
44

5-
{% block head %}<link rel="stylesheet" type="text/css" href="https://www1.ietf.org/css/base.css" />{% endblock %}
6-
75
{% block title %}NomCom Message: {{ object.announced_date|date:"F j, Y" }} -- {{ object.subject|escape }}{% endblock %}
86

97
{% block content %}
10-
<h2 style="text-align: center;">NomCom Message</h2>
8+
<h1>NomCom Message</h1>
119
<p>
12-
From: {{ object.from_name|escape }}<br>
13-
To: {{ object.announced_to|escape }}<br>
14-
Date: {{ object.announced_date|date:"F j, Y" }}<br>
15-
Subject: {{ object.subject|escape }}<br>
16-
<hr width="400" align="left">
10+
From: {{ object.from_name|escape }}<br/>
11+
To: {{ object.announced_to|escape }}<br/>
12+
Date: {{ object.announced_date|date:"F j, Y" }}<br/>
13+
Subject: {{ object.subject|escape }}
14+
</p>
15+
<hr width="400" align="left" />
1716
<pre>
1817
{{ object.text|escape }}
1918
</pre>

ietf/templates/announcements/nomcom.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
{% extends "base.html" %}
1+
{% extends "idrfc/base.html" %}
22
{% load ietf_filters %}
33
{% block title %}IAB/IESG Nominating Committee{% endblock %}
44
{% block content %}
55

6-
<H1><center>IAB/IESG Nominating Committee</center></H1>
6+
<h1>IAB/IESG Nominating Committee</h1>
77

8-
<h3><center>Current Committee Chair: <a href="mailto:{{ curr_chair.person.email.1 }}">{{ curr_chair.person.email.0 }}</a></center></h3>
8+
<h3>Current Committee Chair: <a href="mailto:{{ curr_chair.person.email.1 }}">{{ curr_chair.person.email.0 }}</a></h3>
99

1010
{% for regime in regimes %}
1111
<hr>
1212
<h1>Messages from {{ regime.chair.start_year }} - {{ regime.chair.end_year }}</h1>
1313
<h4>Committee Chair: <a href="mailto:{{ regime.chair.person.email.1 }}">{{ regime.chair.person }}</a></h4>
14-
<table>
14+
<table class="ietf-table">
1515
<tr>
1616
<th width="10%">Date</th>
1717
<th width="60%">Subject</th>

ietf/templates/iesg/ballotinfo_detail.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{# Copyright The IETF Trust 2007, All Rights Reserved #}
2-
{% extends "base.html" %}
2+
{% extends "idrfc/base.html" %}
33
{% block title %}IESG Announcement{% endblock %}
44

55
{% block content %}
6-
<center><h2>IESG Announcement</center>
6+
<h1>IESG Announcement</h1>
77
<blockquote>
88
<p>
99
This page contains an IESG Protocol, Document, or Working Group Action

ietf/templates/iesg/ietf_doc.html

Lines changed: 3 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,9 @@
11
{# Copyright The IETF Trust 2007, All Rights Reserved #}
2-
{% extends "base.html" %}
2+
{% extends "idrfc/base.html" %}
33
{% block title %}{{ title_prefix }} IESG Announcements{% endblock %}
4-
{% block css %}
5-
TD {text-decoration: none; color: #000000; font: 10pt verdana;}
6-
body {
7-
margin:0;
8-
padding:0;
9-
font-family: Times, sans-serif;
10-
font-size: 1.0em;
11-
font-style: normal;
12-
}
13-
th {
14-
padding:6px 0px 10px 30px;
15-
line-height:1em;
16-
font-size: 12px;
17-
color: #333;
18-
19-
}
20-
/* Links
21-
----------------------------------------------- */
22-
a:link, a:visited {
23-
border-bottom:1px dotted #69f;
24-
color:#36c;
25-
text-decoration:none;
26-
}
27-
a:visited {
28-
border-bottom-color:#969;
29-
color:#36c;
30-
}
31-
a:hover {
32-
border-bottom:1px solid #f00;
33-
color:#f00;
34-
}
35-
a.noline:link, a.noline:visited, a.noline:hover {border-style:none;}
36-
{% endblock %}
374
{% block content %}
385
{% if is_recent %}
39-
<center><h2>Recent IESG Announcements</h2></center>
6+
<h1>Recent IESG Announcements</h1>
407
<blockquote>
418
This page contains links to all IESG Protocol, Document, and Working Group Action announcements that have been sent within the past six months. Announcements that were sent prior to six month ago can be found in <a href="/iesg/ann/prev/">Previous Announcements</a>.<br>
429
<br>
@@ -49,7 +16,7 @@
4916
</b>
5017
</blockquote>
5118
{% else %}
52-
<center><h2>Previous IESG Announcements</center>
19+
<h1>Previous IESG Announcements</h1>
5320
<blockquote>
5421
This page contains links to all IESG Protocol, Document, and Working Group Action announcements that were sent prior to six months ago. Announcements that have been sent within the past six months can be found in <a href="/iesg/ann/new/">Recent Announcements</a>.
5522
<br><br>

ietf/templates/iesg/independent_doc.html

Lines changed: 2 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,8 @@
11
{# Copyright The IETF Trust 2007, All Rights Reserved #}
2-
{% extends "base.html" %}
2+
{% extends "idrfc/base.html" %}
33
{% block title %}IESG Statements on Independent Submissions{% endblock %}
4-
{% block css %}
5-
TD {text-decoration: none; color: #000000; font: 10pt verdana;}
6-
body {
7-
margin:18;
8-
padding:0;
9-
font-family: Times, sans-serif;
10-
font-size: 1.0em;
11-
font-style: normal;
12-
}
13-
th {
14-
padding:6px 0px 10px 30px;
15-
line-height:1em;
16-
font-size: 12px;
17-
color: #333;
18-
19-
}
20-
/* Links
21-
----------------------------------------------- */
22-
a:link, a:visited {
23-
border-bottom:1px dotted #69f;
24-
color:#36c;
25-
text-decoration:none;
26-
}
27-
a:visited {
28-
border-bottom-color:#969;
29-
color:#36c;
30-
}
31-
a:hover {
32-
border-bottom:1px solid #f00;
33-
color:#f00;
34-
}
35-
a.noline:link, a.noline:visited, a.noline:hover {border-style:none;}
36-
{% endblock %}
374
{% block content %}
38-
<center><h2>IESG Statements on Independent Submissions</center>
5+
<h1>IESG Statements on Independent Submissions</h1>
396
The RFC Editor receives requests to publish non-IETF Working Group documents as independent Informational or Experimental RFCs. Following the process defined in RFC 3932, the RFC Editor requests that the IESG review these documents and provide input. This page contains copies of those messages that were sent by the IESG to the RFC Editor following such reviews.
407
<hr>
418

ietf/templates/registration/profile.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{# Copyright The IETF Trust 2007, All Rights Reserved #}
2-
{% extends "base.html" %}
2+
{% extends "idrfc/base.html" %}
33

44
{% block content %}
55
<h1>User information</h1>

0 commit comments

Comments
 (0)