Skip to content

Commit

Permalink
Merge pull request #5095 from edx/cdodge/white-label-small-hotfixes
Browse files Browse the repository at this point in the history
Cdodge/white label small hotfixes
  • Loading branch information
adampalay committed Sep 5, 2014
2 parents b1ada02 + 405baab commit 08f851a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ <h2>${_("Coupons List")}</h2>
<tr class="coupons-headings">
<th class="c_code">${_("Code")}</th>
<th class="c_dsc">${_("Description")}</th>
<th class="c_course_id">${_("Course_id")}</th>
<th class="c_discount">${_("Discount (%)")}</th>
<th class="c_count">${_("Count")}</th>
<th class="c_action">${_("Actions")}</th>
Expand All @@ -114,7 +113,6 @@ <h2>${_("Coupons List")}</h2>
%endif
<td>${coupon.code}</td>
<td>${coupon.description}</td>
<td>${coupon.course_id.to_deprecated_string()}</td>
<td>${coupon.percentage_discount}</td>
<td>
${ coupon.couponredemption_set.all().count() }
Expand Down
3 changes: 2 additions & 1 deletion lms/templates/shoppingcart/receipt.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<%! from django.utils.translation import ugettext as _ %>
<%! from django.core.urlresolvers import reverse %>
<%! from django.conf import settings %>
<%! from microsite_configuration import microsite %>

<%inherit file="../main.html" />

Expand All @@ -22,7 +23,7 @@ <h2>${_("Thank you for your Purchase!")}</h2>
<section class="wrapper cart-list">
<div class="wrapper-content-main">
<article class="content-main">
<h1>${_(settings.PLATFORM_NAME + " (" + settings.SITE_NAME + ")" + " Electronic Receipt")}</h1>
<h1>${_("{platform_name} ({site_name}) Electronic Receipt").format(platform_name=microsite.get_value('platform_name', settings.PLATFORM_NAME), site_name=microsite.get_value('SITE_NAME', settings.SITE_NAME))}</h1>
<hr />

<table class="order-receipt">
Expand Down

0 comments on commit 08f851a

Please sign in to comment.