-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ff1b95d
commit 144e611
Showing
9 changed files
with
196 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Generated by Django 5.1.2 on 2024-11-29 15:32 | ||
|
||
# Third-party | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("api", "0047_app_cloud_platform_role_arn"), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name="Feedback", | ||
fields=[ | ||
( | ||
"id", | ||
models.BigAutoField( | ||
auto_created=True, primary_key=True, serialize=False, verbose_name="ID" | ||
), | ||
), | ||
( | ||
"satisfaction_rating", | ||
models.IntegerField( | ||
choices=[ | ||
(5, "Very satisfied"), | ||
(4, "Satisfied"), | ||
(3, "Neither satisfied or dissatisfied"), | ||
(2, "Dissatisfied"), | ||
(1, "Very dissatisfied"), | ||
] | ||
), | ||
), | ||
("suggestions", models.TextField()), | ||
], | ||
options={ | ||
"db_table": "control_panel_api_feedback", | ||
}, | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Third-party | ||
from django.db import models | ||
|
||
|
||
class Feedback(models.Model): | ||
SATISFACTION_RATINGS = [ | ||
(5, "Very satisfied"), | ||
(4, "Satisfied"), | ||
(3, "Neither satisfied or dissatisfied"), | ||
(2, "Dissatisfied"), | ||
(1, "Very dissatisfied"), | ||
] | ||
|
||
satisfaction_rating = models.IntegerField( | ||
choices=SATISFACTION_RATINGS, | ||
null=False, | ||
blank=False, | ||
) | ||
|
||
suggestions = models.TextField() | ||
|
||
class Meta: | ||
db_table = "control_panel_api_feedback" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
{% from "error-message/macro.html" import govukErrorMessage %} | ||
{% from "label/macro.html" import govukLabel %} | ||
{% from "radios/macro.html" import govukRadios %} | ||
{% from "includes/auth0-connections-form.html" import auth0_connections_form with context %} | ||
|
||
|
||
{% extends "base.html" %} | ||
|
||
{% set page_title = "Feedback" %} | ||
|
||
{% block content %} | ||
<h1 class="govuk-heading-xl">Give feedback on the Analytical Platform</h1> | ||
|
||
|
||
<form method="post" id="feedback" action="{{ url("feedback-create") }}"> | ||
{{ csrf_input }} | ||
|
||
{{ govukRadios({ | ||
"name": "satisfaction_rating", | ||
"fieldset": { | ||
"legend": { | ||
"text": "Satisfaction survey", | ||
"classes": "govuk-fieldset__legend--l", | ||
}, | ||
}, | ||
"items": [ | ||
{ | ||
"value": 5, | ||
"text": "Very satisfied", | ||
"checked": form.satisfaction_rating.value() == "5" | ||
}, | ||
{ | ||
"value": 4, | ||
"text": "Satisfied", | ||
"checked": form.satisfaction_rating.value() == "4" | ||
}, | ||
{ | ||
"value": 3, | ||
"text": "Neither satisfied or dissatisfied", | ||
"checked": form.satisfaction_rating.value() == "3" | ||
}, | ||
{ | ||
"value": 2, | ||
"text": "Dissatisfied", | ||
"checked": form.satisfaction_rating.value() == "2" | ||
}, | ||
{ | ||
"value": 1, | ||
"text": "Very dissatisfied", | ||
"checked": form.satisfaction_rating.value() == "1" | ||
}, | ||
], | ||
"errorMessage": { "text": form.errors.get("satisfaction_rating") } if form.errors.get("satisfaction_rating") else {} | ||
}) }} | ||
|
||
|
||
|
||
<div class="govuk-form-group {%- if form.errors.get("suggestions") %} govuk-form-group--error{% endif %}"> | ||
<h2 class="govuk-label-wrapper"> | ||
<label class="govuk-label govuk-label--l" for="{{form.suggestions.id_for_label}}"> | ||
How can we improve this service? | ||
</label> | ||
</h2> | ||
<div id="more-detail-hint" class="govuk-hint"> | ||
Do not include personal or financial information, like your National Insurance number or credit card details. | ||
</div> | ||
|
||
{% if form.errors.get("suggestions") %} | ||
{{ govukErrorMessage({"text": form.errors.get("suggestions")}) }} | ||
{% endif %} | ||
|
||
<textarea class="govuk-textarea" id="{{form.suggestions.id_for_label}}" name="{{form.suggestions.html_name}}" rows="5" aria-describedby="more-detail-hint"></textarea> | ||
</div> | ||
|
||
|
||
<div class="govuk-form-group"> | ||
<button class="govuk-button">Send feedback</button> | ||
</div> | ||
</form> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{% from "error-message/macro.html" import govukErrorMessage %} | ||
{% from "includes/auth0-connections-form.html" import auth0_connections_form with context %} | ||
|
||
|
||
{% extends "base.html" %} | ||
|
||
{% set page_title = "Thank you" %} | ||
|
||
{% block content %} | ||
<h1 class="govuk-heading-xl">Thank you for your feedback</h1> | ||
<p class="govuk-body">Your feedback will help us improve the service.</p> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Third-party | ||
from django.urls import reverse_lazy | ||
from django.views.generic import TemplateView | ||
from django.views.generic.edit import CreateView, FormMixin | ||
|
||
# First-party/Local | ||
from controlpanel.api.models import Feedback | ||
from controlpanel.frontend.forms import FeedbackForm | ||
from controlpanel.oidc import OIDCLoginRequiredMixin | ||
|
||
|
||
class CreateFeedback(OIDCLoginRequiredMixin, CreateView): | ||
form_class = FeedbackForm | ||
model = Feedback | ||
template_name = "feedback-create.html" | ||
|
||
def get_success_url(self): | ||
return reverse_lazy("feedback-thanks") | ||
|
||
def form_valid(self, form): | ||
form.save() | ||
return FormMixin.form_valid(self, form) | ||
|
||
|
||
class FeedbackThanks(OIDCLoginRequiredMixin, TemplateView): | ||
template_name = "feedback-thanks.html" |