[Debconf-video-commits] r402 - package/branches/pycon09/src/pyconvideo

xf-guest at alioth.debian.org xf-guest at alioth.debian.org
Thu Mar 26 21:53:33 UTC 2009


Author: xf-guest
Date: 2009-03-26 21:53:33 +0000 (Thu, 26 Mar 2009)
New Revision: 402

Modified:
   package/branches/pycon09/src/pyconvideo/urls.py
Log:
Updated CSS, new recordings URL

Modified: package/branches/pycon09/src/pyconvideo/urls.py
===================================================================
--- package/branches/pycon09/src/pyconvideo/urls.py	2009-03-26 21:52:36 UTC (rev 401)
+++ package/branches/pycon09/src/pyconvideo/urls.py	2009-03-26 21:53:33 UTC (rev 402)
@@ -9,13 +9,30 @@
 
 def front_page(request):
     return HttpResponse('''\
-<html>
-  <head><title>Pycon Video Management</title></head>
-  <body>
-    <h1>Pycon Video Management</h1>
-    <p><a href="event/">Events</a> - all known events in the conference</p>
-    <p><a href="recording/">Recordings</a> - all recorded files</p>
-    <p><a href="target/">Target files</a> - completed files for publication or archival</p>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+
+  <head>
+  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+  <title>PyCon AV - Management (Main Page)</title>
+  <style type="text/css">
+  <!--
+  @import url("/media/style.css");
+  -->
+  </style>
+  </head>
+
+   <body>
+    <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>
+
+    &nbsp;<a href="/admin">Django Admin</a> - may be needed to authenticate to this system. Please don't manipulate data in here directly!
   </body>
 </html>
 ''')
@@ -27,6 +44,7 @@
       models.Event.objects.all().order_by('start_time').select_related()}),
     (r'^recording/$', views.list_recordings),
     (r'^recording/(\d+)/review$', views.review_recording),
+    (r'^recordingnew/$', views.list_recordings_unchecked),
     (r'^target/$', views.list_targets),
     (r'^target/(\d+)/review$', views.review_target),
     (r'^admin/(.*)', admin.site.root),




More information about the Debconf-video-commits mailing list