You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

layout.html 955B

123456789101112131415161718192021222324252627
  1. {% extends "base.html" %}
  2. {% block layout %}
  3. <div id="container">
  4. <div id="header">
  5. <h1>Oscar // Flexible e-commerce for Django</h1>
  6. <form method="get" action="{% url oscar-products %}">
  7. <label id="search_input">Search all products:</label>
  8. <input type="text" name="q" id="search_input" value="{{ search_term }}"/>
  9. <input type="submit" value="Go!" />
  10. </form>
  11. {% block header %}
  12. {% endblock %}
  13. </div>
  14. <div id="content">
  15. {% if messages %}
  16. <ul class="messages">
  17. {% for message in messages %}
  18. <li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
  19. {% endfor %}
  20. </ul>
  21. {% endif %}
  22. {% block content %}{% endblock %}
  23. </div>
  24. <div id="footer">{% block footer %}{% endblock %}</div>
  25. </div>
  26. {% endblock %}