Skip to content

Commit 384c992

Browse files
committed
removed extraneous .pyc files
- Legacy-Id: 112
1 parent 783ffb7 commit 384c992

6 files changed

Lines changed: 5 additions & 1 deletion

File tree

ietf/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
/*.swp
12
/*.pyc
23
/settings_local.py

ietf/meeting/__init__.pyc

-140 Bytes
Binary file not shown.

ietf/meeting/models.pyc

-261 Bytes
Binary file not shown.

ietf/meeting/urls.pyc

-570 Bytes
Binary file not shown.

ietf/meeting/views.pyc

-2.97 KB
Binary file not shown.

ietf/templates/meeting/list.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<h3> The following meeting are in chronological order </h3>
66
<table border="1" cellpadding="2" cellspacing="2" width="820">
77
<tr>
8-
<th> Meeting City </th> <th> Agenda </th> <th> Minutes </th>
8+
<th> Meeting City </th> <th> Agenda </th> <th> Minutes </th><th> Materials </th>
99
</tr>
1010
{% for meeting in meetings %}
1111
<tr>
@@ -16,6 +16,9 @@ <h3> The following meeting are in chronological order </h3>
1616
<a href="/meeting/{{meeting.meeting_num}}/minutes.html"> HTML</a> &middot;
1717
<a href="/meeting/{{meeting.meeting_num}}/minutes.txt"> Text </a>
1818
</td>
19+
<td>
20+
<a href="/meeting/{{meeting.meeting_num}}/materials.html"> Materials </a>
21+
</td>
1922
</tr>
2023
{% endfor %}
2124

0 commit comments

Comments
 (0)