Commit 60162f36724ac191b0ed9b4da978f73bc128f019

Authored by Sergio Oliveira
1 parent 769f4265

Using static from staticfiles framework

colab/proxy/gitlab/templates/proxy/gitlab.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 <style> 5 <style>
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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 -{% load i18n static browserid conversejs gravatar %} 2 +{% load i18n browserid conversejs gravatar %}
  3 +{% load static from staticfiles %}
3 4
4 <html> 5 <html>
5 <head> 6 <head>
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
1 -{% load i18n static %} 1 +{% load i18n %}
  2 +{% load static from staticfiles %}
2 3
3 <script src="{% static 'third-party/highcharts/js/highcharts.js' %}"></script> 4 <script src="{% static 'third-party/highcharts/js/highcharts.js' %}"></script>
4 <script> 5 <script>