--- /dev/null
+<?python
+title = 'Browse Courses'
+?>
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:xi="http://www.w3.org/2001/XInclude"
+ xmlns:py="http://genshi.edgewall.org/">
+<xi:include href="master.xhtml"/>
+<head>
+ <title>${title}</title>
+</head>
+<body>
+ <h1>${title}</h1>
+ <p class="todo">What does the RD browse interface look like? Drill down by dept?</p>
+ <h2>All courses</h2>
+ <table class="pagetable">
+ <thead>
+ <tr><th py:for="h in ['Code','Title','Term']">${h}</th></tr>
+ </thead>
+ <tbody>
+ <tr py:for="c in models.Course.objects.all().order_by('code')">
+ <td>${c.code}</td>
+ <td>${c.title}</td>
+ <td>${c.term}</td>
+ </tr>
+ </tbody>
+ </table>
+</body>
+</html>