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 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. {% if user.is_authenticated %}
  12. <a href="">Profile</a>
  13. <a href="">Logout</a>
  14. {% else %}
  15. <a href="">Login</a>
  16. {% endif %}
  17. {% if banner %}
  18. {% if banner.has_link %}
  19. <a href="{{ banner.link_url }}" title="{{ banner.name }}"><img src="{{ banner.image.url }}" alt="{{ banner.name }}" /></a>
  20. {% else %}
  21. <img src="{{ banner.image.url }}" alt="{{ banner.name }}" />
  22. {% endif %}
  23. {% endif %}
  24. {% if pods %}
  25. {% for pod in pods %}
  26. {% if pod.has_link %}
  27. <a href="{{ pod.link_url }}" title="{{ pod.name }}"><img src="{{ pod.image.url }}" alt="{{ pod.name }}" /></a>
  28. {% else %}
  29. <img src="{{ pod.image.url }}" alt="{{ pod.name }}" />
  30. {% endif %}
  31. {% endfor %}
  32. {% endif %}
  33. {% block header %}
  34. {% endblock %}
  35. </div>
  36. <div id="content">
  37. {% if messages %}
  38. <ul class="messages">
  39. {% for message in messages %}
  40. <li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
  41. {% endfor %}
  42. </ul>
  43. {% endif %}
  44. {% block content %}{% endblock %}
  45. </div>
  46. <div id="footer">{% block footer %}{% endblock %}</div>
  47. </div>
  48. {% endblock %}