[Debconf-video-commits] r408 - package/branches/pycon09/src/pyconvideo
xf-guest at alioth.debian.org
xf-guest at alioth.debian.org
Fri Mar 27 02:13:49 UTC 2009
Author: xf-guest
Date: 2009-03-27 02:13:49 +0000 (Fri, 27 Mar 2009)
New Revision: 408
Modified:
package/branches/pycon09/src/pyconvideo/urls.py
Log:
Further sorting by roomname, then event time
Modified: package/branches/pycon09/src/pyconvideo/urls.py
===================================================================
--- package/branches/pycon09/src/pyconvideo/urls.py 2009-03-27 02:01:11 UTC (rev 407)
+++ package/branches/pycon09/src/pyconvideo/urls.py 2009-03-27 02:13:49 UTC (rev 408)
@@ -26,12 +26,10 @@
<p id="masthead">
<b><big>Pycon AV - Management (Main Page)</big></b>
</p>
-
<p id="masthead"><a href="event/">Events</a> - all known events in the conference</p>
<p id="masthead"><a href="recording/">Recordings</a> - all recorded files</p>
<p id="masthead"><a href="recordingnew/">Recordings (unchecked)</a> - new recorded files</p>
<p id="masthead"><a href="target/">Target files</a> - completed files for publication or archival</p>
-
</body>
</html>
''')
@@ -40,7 +38,7 @@
(r'^$', front_page),
(r'^event/$', object_list,
{'queryset':
- models.Event.objects.all().order_by('start_time').select_related()}),
+ models.Event.objects.all().order_by('conference_room', 'start_time').select_related()}),
(r'^recording/$', views.list_recordings),
(r'^recording/(\d+)/review$', views.review_recording),
(r'^recordingnew/$', views.list_recordings_unchecked),
More information about the Debconf-video-commits
mailing list