Skip to content

Commit

Permalink
🔥 implement changes requested by Pit
Browse files Browse the repository at this point in the history
  • Loading branch information
nils-schmitt committed May 31, 2024
1 parent f45a6e6 commit 884cdfc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ def execute(
patient_journey_sentences
)
activity_labels: pd.DataFrame = self.__extract_activities(
patient_journey_numbered, condition, len(patient_journey_sentences)
patient_journey_numbered=patient_journey_numbered,
condition=condition,
number_of_sentences=len(patient_journey_sentences),
)

return activity_labels
Expand Down
2 changes: 1 addition & 1 deletion tracex_project/extraction/templates/filter_journey.html
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ <h4>DFG activity key</h4>
</form>

<a href="{{ request.META.HTTP_REFERER }}">
<button class="menu_button">Return to previous Page</button>
<button class="menu_button">Return to Previous Page</button>
</a>
<a href="{% url "landing_page" %}">
<button class="menu_button">Return to TracEX Menu</button>
Expand Down
2 changes: 1 addition & 1 deletion tracex_project/extraction/templates/journey_details.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ <h2>Content of "{{ patient_journey.name }}"</h2>
<input type="submit" class="function_button" value="Confirm Selection">
</form>
<a href="{% url "journey_select" %}">
<button class="menu_button">Return to previous Page</button>
<button class="menu_button">Return to Previous Page</button>
</a>
<a href="{% url "landing_page" %}">
<button class="menu_button">Return to TracEX Menu</button>
Expand Down

0 comments on commit 884cdfc

Please sign in to comment.