diff options
Diffstat (limited to 'app/templates')
| -rw-r--r-- | app/templates/admin/annotations_by_dataset.html | 14 | ||||
| -rw-r--r-- | app/templates/annotate/index.html | 2 | ||||
| -rw-r--r-- | app/templates/base.html | 2 | ||||
| -rw-r--r-- | app/templates/index.html | 4 |
4 files changed, 10 insertions, 12 deletions
diff --git a/app/templates/admin/annotations_by_dataset.html b/app/templates/admin/annotations_by_dataset.html index 2a609bf..a0e935b 100644 --- a/app/templates/admin/annotations_by_dataset.html +++ b/app/templates/admin/annotations_by_dataset.html @@ -1,19 +1,17 @@ {% extends "base.html" %} {% block styles %} -{{ super() }} -<link rel="stylesheet" href="{{url_for('static', filename='view_annotation.css')}}">{% endblock %} + {{ super() }} + <link rel="stylesheet" href="{{url_for('static', filename='css/admin/view_annotation.css')}}"> +{% endblock %} {% block app_content %} -<h1>View Annotations</h1> - -<div id="graph"></div> + <h1>View Annotations</h1> + <div id="graph"></div> {% endblock %} - - {% block scripts %} -{{ super() }} + {{ super() }} <script src="//d3js.org/d3.v5.min.js"></script> <script src="{{ url_for('static', filename='js/makeChart.js') }}"></script> <script>adminViewAnnotations( diff --git a/app/templates/annotate/index.html b/app/templates/annotate/index.html index ce9e01a..3b00b75 100644 --- a/app/templates/annotate/index.html +++ b/app/templates/annotate/index.html @@ -3,7 +3,7 @@ {% block styles %} {{ super() }} - <link rel="stylesheet" href="{{url_for('static', filename='annotate.css')}}"> + <link rel="stylesheet" href="{{url_for('static', filename='css/main/annotate.css')}}"> {% endblock %} {% block app_content %} diff --git a/app/templates/base.html b/app/templates/base.html index eec1fc2..d798d56 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -4,7 +4,7 @@ {% block styles %} {{ super() }} <link rel="stylesheet" href="{{ url_for('static', filename='css/global.css') }}"> - <link rel="stylesheet" href="{{ url_for('static', filename='sticky_footer.css') }}"> + <link rel="stylesheet" href="{{ url_for('static', filename='css/footer.css') }}"> {% endblock %} {% block title %} diff --git a/app/templates/index.html b/app/templates/index.html index 930bfd3..86d2f1a 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -2,7 +2,7 @@ {% block styles %} {{ super() }} - <link rel="stylesheet" href="{{url_for('static', filename='user_index.css')}}"> + <link rel="stylesheet" href="{{url_for('static', filename='css/index.css')}}"> {% endblock %} {% block app_content %} @@ -70,7 +70,7 @@ </div> {% elif tasks_todo|length == 0 and tasks_done|length > 0 %} <div id="done"> - <img src="{{ url_for('static', filename='done.png') }}"> + <img src="{{ url_for('static', filename='img/done.png') }}"> <span> No more annotations to do! Thank you so much for your help, <b>you rock!</b> |
