Skip to content

Commit

Permalink
DST-861 - Adding content changes (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
cencorroll authored Jan 10, 2025
1 parent b19bdcd commit 2e14b4a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions django_app/core/templates/core/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,7 @@ <h2 class="govuk-cookie-banner__heading govuk-heading-m">
{% if request.resolver_match.app_name != "feedback" %}
– Help us improve it and
<a class="govuk-link" target="_blank"
href="{% url 'feedback:collect_full_feedback' %}?url={% get_feedback_url request %}">
give your feedback (opens in a new tab).
href="{% url 'feedback:collect_full_feedback' %}?url={% get_feedback_url request %}">give your feedback (opens in a new tab).
</a>
{% endif %}
</span>
Expand Down
2 changes: 1 addition & 1 deletion django_app/core/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
path("report/", include("report_a_suspected_breach.urls")),
path("cookies-policy", CookiesConsentView.as_view(), name="cookies_consent"),
path("hide_cookies", HideCookiesView.as_view(), name="hide_cookies"),
path("feedback/", include("feedback.urls")),
path("give-feedback/", include("feedback.urls")),
path("healthcheck/", include("healthcheck.urls")),
path("privacy-notice", PrivacyNoticeView.as_view(), name="privacy_notice"),
path("reset_session/", ResetSessionView.as_view(), name="reset_session"),
Expand Down
2 changes: 1 addition & 1 deletion django_app/feedback/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@

urlpatterns = [
path("", views.ProvideFullFeedbackView.as_view(), name="collect_full_feedback"),
path("done", views.FeedbackDoneView.as_view(), name="feedback_done"),
path("feedback-sent", views.FeedbackDoneView.as_view(), name="feedback_done"),
]

0 comments on commit 2e14b4a

Please sign in to comment.