Commit 60162f36724ac191b0ed9b4da978f73bc128f019

Authored by Sergio Oliveira
1 parent 769f4265

Using static from staticfiles framework

colab/proxy/gitlab/templates/proxy/gitlab.html
1 1 {% extends 'base.html' %}
2   -{% load static %}
  2 +{% load static from staticfiles %}
3 3  
4 4 {% block head_css %}
5 5 <style>
... ...
colab/proxy/noosfero/templates/proxy/noosfero.html
1 1 {% extends 'base.html' %}
2   -{% load static %}
  2 +{% load static from staticfiles %}
3 3  
4 4 {% block head_css %}
5 5 <link href="{% static 'noosfero/css/bootstrap-colab-style.css' %}"
... ...
colab/search/templates/search/search.html
1 1 {% extends "base.html" %}
2   -{% load i18n highlight superarchives static %}
  2 +{% load i18n highlight superarchives %}
  3 +{% load static from staticfiles %}
3 4  
4 5 {% block title %}{% trans 'search'|title %}{% endblock %}
5 6  
... ...
colab/templates/base.html
1 1 <!DOCTYPE html>
2   -{% load i18n static browserid conversejs gravatar %}
  2 +{% load i18n browserid conversejs gravatar %}
  3 +{% load static from staticfiles %}
3 4  
4 5 <html>
5 6 <head>
... ...
colab/templates/doughnut-chart.html
1   -{% load i18n static %}
  1 +{% load i18n %}
  2 +{% load static from staticfiles %}
2 3  
3 4 <script src="{% static 'third-party/chartjs/js/Chart.min.js' %}"></script>
4 5 <script src="{% static 'third-party/chroma/js/chroma.min.js' %}"></script>
... ...
colab/templates/dpaste/base.html
1 1 {% extends 'base.html' %}
2   -{% load static %}
  2 +{% load static from staticfiles %}
3 3  
4 4 {% block head_css %}
5 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 4 <script src="{% static 'third-party/highcharts/js/highcharts.js' %}"></script>
4 5 <script>
... ...