123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <!doctype html>
- <html lang="en">
- <head>
- {% block title %}<title>Local Library</title>{% endblock %}
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <link
- rel="stylesheet"
- href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
- <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
- {% load static %}
- <link rel="stylesheet" href="{% static 'css/styles.css' %}" />
- </head>
- <body>
- <div class="container-fluid">
- <div class="row">
- <div class="col-sm-2">
- {% block sidebar %}
- <ul class="sidebar-nav">
- <li><a href="{% url 'index' %}">Home</a></li>
- <li><a href="{% url 'products' %}">All Products</a></li>
- <li><a href=" +">About us</a></li>
- </ul>
- <li>User</li>
- <li><a href="{% url 'logout'%}?next={{request.path}}">Logout</a></li>
- <li><a href="{% url 'login'%}?next={{request.path}}">Login</a></li>
- <p><a href="{% url 'registration'%}">Регистрация</a></p>
- </ul>
- {% endblock %}
- </div>
- <div class="col-sm-10 ">{% block content %}{% endblock %}</div>
- </div>
- </div>
- </body>
- </html>
|