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.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. <a href="/admin/marketing/pod/add/?page_url={{ url_path }}" >Add a pod to this page</a>
  34. {% block header %}
  35. {% endblock %}
  36. </div>
  37. <div id="content">
  38. {% if messages %}
  39. <ul class="messages">
  40. {% for message in messages %}
  41. <li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
  42. {% endfor %}
  43. </ul>
  44. {% endif %}
  45. {% block content %}{% endblock %}
  46. </div>
  47. <div id="footer">{% block footer %}{% endblock %}</div>
  48. </div>
  49. {% endblock %}