app/soc/templates/soc/templatetags/_as_student_proposal_review.html
changeset 1916 71b3f3521a10
parent 1897 634617545037
child 2085 2f04b8ec3b96
--- a/app/soc/templates/soc/templatetags/_as_student_proposal_review.html	Tue Mar 17 18:02:11 2009 +0000
+++ b/app/soc/templates/soc/templatetags/_as_student_proposal_review.html	Tue Mar 17 18:03:31 2009 +0000
@@ -12,18 +12,20 @@
 limitations under the License.
 {% endcomment %}
 
-<li class="studentproposalreview">
-{% if from_student %}
-  <div class="student">
-{% else %}
-  <div class="other">
-{% endif %}
-On {{ created|date:"jS F Y H:i" }}
-{% if is_public %}
-{{ author }} wrote:
-{% else %}
-{{ author }} gave a score of <b>{{ score }}</b> and wrote:
-{% endif %}
-<p>{{ content|safe }}</p>
+<div class="studentproposalreview">
+  <div class="title">
+    On {{ created|date:"jS F Y H:i" }}
+    {% if is_public %}
+      {{ author }} wrote:
+    {% else %}
+      {{ author }} gave a score of <b>{{ score }}</b> and wrote:
+    {% endif %}
+  </div>
+  {% if from_student %}
+    <div class="student">
+  {% else %}
+    <div class="other">
+  {% endif %}
+    <p>{{ content|safe }}</p>
+  </div>
 </div>
-</li>