Commit 11b5b6f89c8d985a155cd4d1f10ccc8378332c9e

Authored by hitier
1 parent 0d6506cb

Fix css file path

app/main/templates/agent.html
1 1 {% extends "base_page.html" %}
2 2  
3 3 {% block more_heads %}
4   -<link href="{{ url_for('main.static', filename='css/style.css') }}" rel="stylesheet" type="text/css"/>
  4 +<link href="{{ url_for('main.static', filename='css/charges.css') }}" rel="stylesheet" type="text/css"/>
5 5 {% endblock %}
6 6  
7 7 {% block content %}
... ...
app/main/templates/project.html
1 1 {% extends "base_page.html" %}
2 2  
3 3 {% block more_heads %}
4   -<link href="{{ url_for('main.static', filename='css/style.css') }}" rel="stylesheet" type="text/css"/>
  4 +<link href="{{ url_for('main.static', filename='css/charges.css') }}" rel="stylesheet" type="text/css"/>
5 5 {% endblock %}
6 6  
7 7 {% block content %}
... ...