Commit 60162f36724ac191b0ed9b4da978f73bc128f019
1 parent
769f4265
Exists in
master
and in
39 other branches
Using static from staticfiles framework
Showing
7 changed files
with
11 additions
and
7 deletions
Show diff stats
colab/proxy/gitlab/templates/proxy/gitlab.html
colab/proxy/noosfero/templates/proxy/noosfero.html
1 | {% extends 'base.html' %} | 1 | {% extends 'base.html' %} |
2 | -{% load static %} | 2 | +{% load static from staticfiles %} |
3 | 3 | ||
4 | {% block head_css %} | 4 | {% block head_css %} |
5 | <link href="{% static 'noosfero/css/bootstrap-colab-style.css' %}" | 5 | <link href="{% static 'noosfero/css/bootstrap-colab-style.css' %}" |
colab/search/templates/search/search.html
1 | {% extends "base.html" %} | 1 | {% extends "base.html" %} |
2 | -{% load i18n highlight superarchives static %} | 2 | +{% load i18n highlight superarchives %} |
3 | +{% load static from staticfiles %} | ||
3 | 4 | ||
4 | {% block title %}{% trans 'search'|title %}{% endblock %} | 5 | {% block title %}{% trans 'search'|title %}{% endblock %} |
5 | 6 |
colab/templates/base.html
colab/templates/doughnut-chart.html
1 | -{% load i18n static %} | 1 | +{% load i18n %} |
2 | +{% load static from staticfiles %} | ||
2 | 3 | ||
3 | <script src="{% static 'third-party/chartjs/js/Chart.min.js' %}"></script> | 4 | <script src="{% static 'third-party/chartjs/js/Chart.min.js' %}"></script> |
4 | <script src="{% static 'third-party/chroma/js/chroma.min.js' %}"></script> | 5 | <script src="{% static 'third-party/chroma/js/chroma.min.js' %}"></script> |
colab/templates/dpaste/base.html
1 | {% extends 'base.html' %} | 1 | {% extends 'base.html' %} |
2 | -{% load static %} | 2 | +{% load static from staticfiles %} |
3 | 3 | ||
4 | {% block head_css %} | 4 | {% block head_css %} |
5 | <link rel="stylesheet" href="{% static 'dpaste/css/theme.css' %}" type="text/css" media="screen" /> | 5 | <link rel="stylesheet" href="{% static 'dpaste/css/theme.css' %}" type="text/css" media="screen" /> |
colab/templates/pizza-chart.html