From 64bcbc7d5e3fad329d4a49d1dab6c109026c2550 Mon Sep 17 00:00:00 2001 From: Seth Woodworth Date: Wed, 9 Jan 2013 17:49:45 -0500 Subject: [PATCH] fixing up the course_list template to be shiney and compliant --- karmaworld/templates/courses/course_list.html | 62 +++++++++++++++---- 1 file changed, 49 insertions(+), 13 deletions(-) diff --git a/karmaworld/templates/courses/course_list.html b/karmaworld/templates/courses/course_list.html index b869cd9..d6e835d 100644 --- a/karmaworld/templates/courses/course_list.html +++ b/karmaworld/templates/courses/course_list.html @@ -5,21 +5,57 @@ Share College Course Notes {% endblock %} +{% block pagestyle %} + + +{% endblock %} + +{% block pagescript %} + +{% endblock %} + {% block content %} -

Choose a course to browse or upload

-
- - {% for course in object_list %} - - - - - - - {% endfor %} -
{{ course.school.name }} {{ course.name }} {{ course.instructor_name }} {{ course.file_count }}
-
+
+ +
+
+ + + + + + + + + + + + {% for course in object_list %} + + + + + + + + {% endfor %} + +
School Course Name Instructor Notes # Last Updated
{{ course.school.name }} {{ course.name }} {{ course.instructor_name }} {{ course.file_count }} {{ course.updated_at|date:"gA // D M d o" }}
+
+
+
{% endblock %} -- 2.25.1