Commit 568ef418 by Chris Dodge

remove course-id visual column from the list of coupons as it's useless…

remove course-id visual column from the list of coupons as it's useless information here and prevents overflows from happening
parent 041d72cc
...@@ -99,7 +99,6 @@ ...@@ -99,7 +99,6 @@
<tr class="coupons-headings"> <tr class="coupons-headings">
<th class="c_code">${_("Code")}</th> <th class="c_code">${_("Code")}</th>
<th class="c_dsc">${_("Description")}</th> <th class="c_dsc">${_("Description")}</th>
<th class="c_course_id">${_("Course_id")}</th>
<th class="c_discount">${_("Discount (%)")}</th> <th class="c_discount">${_("Discount (%)")}</th>
<th class="c_count">${_("Count")}</th> <th class="c_count">${_("Count")}</th>
<th class="c_action">${_("Actions")}</th> <th class="c_action">${_("Actions")}</th>
...@@ -114,7 +113,6 @@ ...@@ -114,7 +113,6 @@
%endif %endif
<td>${coupon.code}</td> <td>${coupon.code}</td>
<td>${coupon.description}</td> <td>${coupon.description}</td>
<td>${coupon.course_id.to_deprecated_string()}</td>
<td>${coupon.percentage_discount}</td> <td>${coupon.percentage_discount}</td>
<td> <td>
${ coupon.couponredemption_set.all().count() } ${ coupon.couponredemption_set.all().count() }
......
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