Skip to content

Commit

Permalink
Merge branch 'main' into gitignore-update
Browse files Browse the repository at this point in the history
  • Loading branch information
nicopicchio authored May 13, 2024
2 parents c3c2a6c + 1795d46 commit df29b9f
Show file tree
Hide file tree
Showing 3 changed files with 330 additions and 292 deletions.
2 changes: 1 addition & 1 deletion django_feedback_govuk/templatetags/feedback_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def feedback_submit(context, form_id: str = DEFAULT_FEEDBACK_ID, initial=None):
else:
if not initial:
initial = {}
initial.update(submitter=context.request.user)
initial.update(submitter=context["request"].user)

form = feedback_form(initial=initial)

Expand Down
Loading

0 comments on commit df29b9f

Please sign in to comment.