Commit 5637f23d by Bill DeRusha

Add date to course run list

parent 9911f962
......@@ -10,7 +10,8 @@
<h4 class="hd-4">{% trans "Course Run List" %}</h4>
<table class="table">
<tr>
<th>{% trans "Course Title" %}</th>
<th>{% trans "Course Run Title" %}</th>
<th>{% trans "Course Run Start Date" %}</th>
<th>{% trans "Partner" %}</th>
<th>{% trans "Target Content?" %}</th>
<th>{% trans "Priority" %}</th>
......@@ -19,6 +20,7 @@
{% for course_run in object_list %}
<tr>
<td>{{ course_run.title }}</td>
<td>{{ course_run.start }}</td>
<td>{{ course_run.partner }}</td>
<td>{{ course_run.target_content }}</td>
<td>{{ course_run.priority }}</td>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment