From 29a0e6a2bc52ff41dc83a0cdb005df6d94816c4d Mon Sep 17 00:00:00 2001 From: Jacek Lebioda <jacek.lebioda@uni.lu> Date: Mon, 11 Dec 2017 12:40:18 +0100 Subject: [PATCH] Corrections --- smash/web/templates/flying_teams/add.html | 2 +- .../flying_teams.html => flying_teams/index.html} | 0 smash/web/tests/view/test_flying_teams.py | 2 +- smash/web/views/equipment.py | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename smash/web/templates/{equipment_and_rooms/flying_teams.html => flying_teams/index.html} (100%) diff --git a/smash/web/templates/flying_teams/add.html b/smash/web/templates/flying_teams/add.html index 8b348d77..6f732822 100644 --- a/smash/web/templates/flying_teams/add.html +++ b/smash/web/templates/flying_teams/add.html @@ -21,7 +21,7 @@ <div class="box box-info"> <div class="box-header with-border"> - <a href="{% url 'web.views.doctors' %}" class="btn btn-block btn-default">Go back (without changes)</a> + <a href="{% url 'web.views.equipment_and_rooms.flying_teams' %}" class="btn btn-block btn-default">Go back (without changes)</a> </div> <form method="post" action="" class="form-horizontal"> diff --git a/smash/web/templates/equipment_and_rooms/flying_teams.html b/smash/web/templates/flying_teams/index.html similarity index 100% rename from smash/web/templates/equipment_and_rooms/flying_teams.html rename to smash/web/templates/flying_teams/index.html diff --git a/smash/web/tests/view/test_flying_teams.py b/smash/web/tests/view/test_flying_teams.py index 52a27ac3..384bfa56 100644 --- a/smash/web/tests/view/test_flying_teams.py +++ b/smash/web/tests/view/test_flying_teams.py @@ -8,7 +8,7 @@ class FlyingTeamTests(LoggedInTestCase): def test_flyingteam_requests(self): pages = [ 'web.views.equipment_and_rooms.flying_teams', - 'web.views.equipment_and_rooms.flying_teams.add', + 'web.views.equipment_and_rooms.flying_teams_add', ] for page in pages: diff --git a/smash/web/views/equipment.py b/smash/web/views/equipment.py index d145840c..17bed34e 100644 --- a/smash/web/views/equipment.py +++ b/smash/web/views/equipment.py @@ -26,7 +26,7 @@ def flying_teams(request): } return wrap_response(request, - "equipment_and_rooms/flying_teams.html", + "flying_teams/index.html", context) -- GitLab