Course home page styling with bootstrap.

Updates the new bootstrap course home page to match the old course home page.
This commit is contained in:
Harry Rein
2017-10-25 10:12:10 -04:00
parent c3216acd55
commit d4e93fc655
13 changed files with 84 additions and 40 deletions

View File

@@ -517,7 +517,7 @@ class CourseHomeFragmentViewTests(ModuleStoreTestCase):
response = self.client.get(self.url)
self.assertIn('vc-message', response.content)
url = EcommerceService().get_checkout_page_url(self.verified_mode.sku)
self.assertIn('<a class="btn-upgrade"', response.content)
self.assertIn('<a class="btn btn-upgrade"', response.content)
self.assertIn(url, response.content)
self.assertIn('Upgrade (${price})</a>'.format(price=self.verified_mode.min_price), response.content)