Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions server/static/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,9 @@ span.marked {
margin-bottom: 2rem;
padding-left: 3rem;
padding-right: 3rem;
position: sticky;
top: 0;
align-self: flex-start;
}

.ttfd-bottom-nav {
Expand All @@ -152,8 +155,8 @@ span.marked {
align-items: center;
gap: 5px;
position: absolute;
left: 20px;
top: 170px;
left: 0;
top: 1rem;
}

.ttfd-button {
Expand Down
1 change: 1 addition & 0 deletions server/templates/_base.html
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@
{% if ttfd.maintenance_mode %}
<div class="ttfd-warning" role="alert">The application is in maintenance mode.</div>
{% else %}
{% include "_summary.html" %}
<div class="ttfd-main-app" id="ttfd-main-app">
{% block main required %}
{% endblock %}
Expand Down
1 change: 0 additions & 1 deletion server/templates/atoms-view.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{% from "_stepper.html" import stepper %}
{% include '_summary.html' %}
{{ stepper(current=step.current, history=step.history) }}
<div class="flex-center ttfd-metabolite-container">
{{ image | safe }}
Expand Down
1 change: 0 additions & 1 deletion server/templates/empty.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
{% extends "_base.html" %}
{% set step = step %}
{% block main %}
{% include '_summary.html' %}
{{ stepper(current=step.current, history=step.history) }}

<p>{{ message }}</p>
Expand Down
1 change: 0 additions & 1 deletion server/templates/gauge.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{% from "_stepper.html" import stepper %}
{% extends "_base.html" %}
{% block main %}
{% include '_summary.html' %}
{{ stepper(current=step.current, history=step.history) }}
<ul class="ttfd-grid">
{% for gauge in gauges %}
Expand Down
1 change: 0 additions & 1 deletion server/templates/index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{% from "_stepper.html" import stepper %}
{% extends "_base.html" %}
{% block main %}
{% include '_summary.html' %}
{{ stepper(current=step.current, history=step.history) }}
<ul class="ttfd-grid">
{% for tracer in tracers %}
Expand Down
2 changes: 0 additions & 2 deletions server/templates/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
{% set step = step %}
{% block main %}

{% include '_summary.html' %}

{{ stepper(current=step.current, history=step.history) }}

<div class="ttfd-list">
Expand Down
1 change: 0 additions & 1 deletion server/templates/results.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{% from "_stepper.html" import stepper %}
{% extends "_base.html" %}
{% block main %}
{% include "_summary.html" %}
{{ stepper(current=step.current, history=step.history) }}

<div class="ttfd-results-container">
Expand Down
2 changes: 0 additions & 2 deletions server/templates/table.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,5 @@
{% endfor %}
</div>

{% include '_summary.html' %}

{% include '_bottom_nav_buttons.html' %}
{% endblock %}