# HG changeset patch # User Lennard de Rijk # Date 1237659318 0 # Node ID ba5be8275a75ff8f8b817081f9d1b67edc587317 # Parent d3bebec883f18861842e05c13d22f4d847624878 Student proposal list now shows proper date and the normal list shows the organization name. Addresses Issue 396. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed diff -r d3bebec883f1 -r ba5be8275a75 app/soc/templates/soc/student_proposal/list/detailed_row.html --- a/app/soc/templates/soc/student_proposal/list/detailed_row.html Sat Mar 21 18:02:49 2009 +0000 +++ b/app/soc/templates/soc/student_proposal/list/detailed_row.html Sat Mar 21 18:15:18 2009 +0000 @@ -12,5 +12,5 @@
{{ list.item.title }}
{{ list.item.status }}
{{ list.item.score }}
-
{{ list.item.last_modified_on }}
+
{{ list.item.last_modified_on|date:"jS F Y H:i" }}
diff -r d3bebec883f1 -r ba5be8275a75 app/soc/templates/soc/student_proposal/list/heading.html --- a/app/soc/templates/soc/student_proposal/list/heading.html Sat Mar 21 18:02:49 2009 +0000 +++ b/app/soc/templates/soc/student_proposal/list/heading.html Sat Mar 21 18:15:18 2009 +0000 @@ -1,6 +1,6 @@ Student Title - Status + Organization Name Last Modified on diff -r d3bebec883f1 -r ba5be8275a75 app/soc/templates/soc/student_proposal/list/row.html --- a/app/soc/templates/soc/student_proposal/list/row.html Sat Mar 21 18:02:49 2009 +0000 +++ b/app/soc/templates/soc/student_proposal/list/row.html Sat Mar 21 18:15:18 2009 +0000 @@ -5,6 +5,6 @@
{{ list.item.title }}
-
{{ list.item.status }}
-
{{ list.item.last_modified_on }}
+
{{ list.item.org.name }}
+
{{ list.item.last_modified_on|date:"jS F Y H:i" }}