File: base2.html

package info (click to toggle)
python-django-compressor 4.5.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,108 kB
  • sloc: python: 4,900; makefile: 123; javascript: 5
file content (10 lines) | stat: -rw-r--r-- 241 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
{% extends "base.html" %}

{% block js %}{% spaceless %}
    {{ block.super }}
    <script type="text/javascript">
        alert("this alert should be included");
    </script>
{% endspaceless %}{% endblock %}

{% block css %}{% endblock %}