| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 | 
							- {% extends "base.html" %}
 - 
 - {% load currency_filters %}
 - {% load promotions %}
 - 
 - {% block layout %}
 -     <div id="container">
 -         <div id="header">
 -             <h1>Oscar // Flexible e-commerce for Django</h1>
 -             
 -             <form method="get" action="{% url oscar-search %}">
 -                 {{ search_form.as_p }}
 -                 <input type="submit" value="Go!" /> 
 -             </form>
 -             
 -             {% if user.is_authenticated %}
 -                 <a href="{% url oscar-customer-profile %}">Profile</a>
 -                 <a href="">Logout</a>
 -             {% else %}
 -                 <a href="">Login</a>
 -             {% endif %}
 -             
 -             {% for banner in banners %}
 -                 {{ banner.get_banner_html|safe }}
 -             {% endfor %}
 - 
 -             <a href="/admin/promotions/pagepromotion/add/?page_url={{ url_path }}" >Add a promotion to this page</a>
 -             
 -             {% block header %}
 -             {% endblock %}
 -         </div>
 -         <div id="content">
 -         
 -             {% if messages %}
 -             <ul class="messages">
 -                 {% for message in messages %}
 -                 <li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
 -                 {% endfor %}
 -             </ul>
 -             {% endif %}
 -             
 -             {% for linked_block in merchandising_blocks %}
 -                 {% render_merchandising_block linked_block %}
 -             {% endfor %}
 -             
 -             {% block content %}{% endblock %}
 -         </div>
 -         <div id="footer">{% block footer %}{% endblock %}</div>
 -     </div>
 - {% endblock %}
 
 
  |