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.

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {% extends "base.html" %}
  2. {% block extrahead %}
  3. {% if product %}
  4. <!-- Colorbox for image galleries -->
  5. <link rel="stylesheet" href="{{ STATIC_URL }}oscar/js/colorbox/colorbox.css" type="text/css" media="screen" charset="utf-8"/>
  6. {% endif %}
  7. <!-- Responsive - will need to be minified -->
  8. <link rel="stylesheet" href="{{ STATIC_URL }}oscar/css/responsive.css" />
  9. {% endblock %}
  10. {% block layout %}
  11. <div class="navbar accounts">
  12. <div class="navbar-inner">
  13. <div class="container-fluid">
  14. <a class="brand hidden" href="{% url promotions:home %}">Oscar</a>
  15. <ul class="nav pull-right">
  16. <li><a href="#">Home</a></li>
  17. <li><a href="#about">About</a></li>
  18. <li><a href="#contact">Contact</a></li>
  19. {% if user.is_authenticated %}
  20. {% if user.is_staff %}
  21. <li><a href="{% url dashboard:index %}">Dashboard</a></li>
  22. {% endif %}
  23. <li><a href="{% url customer:summary %}">Profile</a></li>
  24. <li><a href="{% url customer:logout %}">Logout</a></li>
  25. {% else %}
  26. <li><a href="{% url customer:login %}">Login</a></li>
  27. {% endif %}
  28. </ul>
  29. </div>
  30. </div><!-- /navbar-inner -->
  31. </div><!-- /navbar -->
  32. <div class="container">
  33. <div class="hero-unit">
  34. <h1>HTTP 500 - Internal Server Error!</h1>
  35. <p>The page you are looking for isn't here. Please try again, use the navigation above or feel free to send us your feedback. Thank you.</p>
  36. <p>
  37. <a class="btn btn-primary btn-large" onClick="javascript:history.go(-1);">Go back to previous page</a>
  38. </p>
  39. </div>
  40. </div>
  41. {% endblock %}