Skip to content

Commit

Permalink
💎 update trace testing templates
Browse files Browse the repository at this point in the history
  • Loading branch information
PitButtchereit committed May 24, 2024
1 parent 23653f2 commit 4b54967
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ <h2>Patient Journey: {{ patient_journey_name }}</h2>

<form method="post" >
{% csrf_token %}
<button type="submit" class="menu_button" id="progress_button">Start Comparing Against Ground Truth</button>
<button type="submit" class="function_button" id="progress_button">Start Comparing Against Ground Truth</button>
</form>

<a href="{% url 'testing_environment' %}">
<button class="menu_button">Return to Trace Testing Environment</button>
</a>

<a href="{% url 'landing_page' %}">
<button class="menu_button">Return to TracEX menu</button>
<button class="menu_button">Return to TracEX Menu</button>
</a>
</div>
</body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ <h2>Welcome to the Trace Testing Environment</h2>
<form method="post">
{% csrf_token %}
{{ form.as_p }}
<button type="submit" class="menu_button">Select this Patient Journey</button>
<button type="submit" class="function_button">Select this Patient Journey</button>
</form>

<a href="{% url 'landing_page' %}">
<button class="menu_button">Return to TracEX menu</button>
<button class="menu_button">Return to TracEX Menu</button>
</a>
</body>
</html>
8 changes: 5 additions & 3 deletions tracex_project/trace_comparator/templates/testing_result.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,21 +49,23 @@ <h3>Number of <br> Wrong Orders</h3>
</div>
</div>
</div>
<button id="togglePipelineTable" class="menu_button">Show/Hide Extracted Trace from the Pipeline</button>
<button id="togglePipelineTable" class="function_button">Show/Hide Extracted Trace from the Pipeline</button>
<div id="contentPipeline" style="display: none;">
<br>
<div>{{ pipeline_output|safe }}</div>
</div>

<button id="toggleGroundTruthTable" class="menu_button">Show/Hide Ground Truth Trace</button>
<button id="toggleGroundTruthTable" class="function_button">Show/Hide Ground Truth Trace</button>
<div id="contentGroundTruth" style="display: none;">
<br>
<div>{{ ground_truth_output|safe }}</div>
</div>

<a href="{% url 'testing_environment' %}">
<button class="menu_button">Return to Trace Testing Environment</button>
</a>
<a href="{% url 'landing_page' %}">
<button class="menu_button">Return to TracEX menu</button>
<button class="menu_button">Return to TracEX Menu</button>
</a>
</body>
</html>

0 comments on commit 4b54967

Please sign in to comment.