Commit 11b5b6f89c8d985a155cd4d1f10ccc8378332c9e
1 parent
0d6506cb
Exists in
master
and in
4 other branches
Fix css file path
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
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 %} | ... | ... |