File: base_site.html

package info (click to toggle)
django-session-security 2.4.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 624 kB
  • ctags: 283
  • sloc: python: 515; makefile: 130
file content (12 lines) | stat: -rw-r--r-- 297 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "admin/base.html" %}
{% load static %}

{% block branding %}
<h1>session-security demo</h1>
{% endblock %}

{% block footer %}
    {{ block.super }}
    <script src="{% static 'jquery.js' %}" type="text/javascript"></script>
    {% include 'session_security/all.html' %}
{% endblock %}