|
|
@@ -1,5 +1,6 @@
|
|
1
|
1
|
{% extends "base.html" %}
|
|
2
|
2
|
{% load compress %}
|
|
|
3
|
+{% load promotion_tags %}
|
|
3
|
4
|
|
|
4
|
5
|
{% block layout %}
|
|
5
|
6
|
{# Top-horizontal bar with account, notifictions, dashboard links #}
|
|
|
@@ -33,6 +34,14 @@
|
|
33
|
34
|
{% block subnavigation %}{% endblock %}
|
|
34
|
35
|
<div class="content">
|
|
35
|
36
|
{% block subheader %}{% endblock subheader %}
|
|
|
37
|
+
|
|
|
38
|
+ {# Render promotions #}
|
|
|
39
|
+ <div id="promotions">
|
|
|
40
|
+ {% for promotion in promotions_page %}
|
|
|
41
|
+ {% render_promotion promotion %}
|
|
|
42
|
+ {% endfor %}
|
|
|
43
|
+ </div>
|
|
|
44
|
+
|
|
36
|
45
|
{# Div exists for AJAX updates to entire content section #}
|
|
37
|
46
|
<div id="content_inner">{% block content %}{% endblock %}</div>
|
|
38
|
47
|
</div>
|