base_generic.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. {% block title %}<title>Local Library</title>{% endblock %}
  5. <meta charset="utf-8" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1" />
  7. <link
  8. rel="stylesheet"
  9. href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
  10. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
  11. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
  12. {% load static %}
  13. <link rel="stylesheet" href="{% static 'css/styles.css' %}" />
  14. </head>
  15. <body>
  16. <div class="container-fluid">
  17. <div class="row">
  18. <div class="col-sm-2">
  19. {% block sidebar %}
  20. <ul class="sidebar-nav">
  21. <li><a href="{% url 'index' %}">Home</a></li>
  22. <li><a href="{% url 'products' %}">All Products</a></li>
  23. <li><a href=" +">About us</a></li>
  24. </ul>
  25. <li>User</li>
  26. <li><a href="{% url 'logout'%}?next={{request.path}}">Logout</a></li>
  27. <li><a href="{% url 'login'%}?next={{request.path}}">Login</a></li>
  28. <p><a href="{% url 'registration'%}">Регистрация</a></p>
  29. </ul>
  30. {% endblock %}
  31. </div>
  32. <div class="col-sm-10 ">{% block content %}{% endblock %}</div>
  33. </div>
  34. </div>
  35. </body>
  36. </html>