Skip to content
Snippets Groups Projects
Commit 990f4341 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Merge branch '84-fix-personal-note-filter-id_-variable' into 'master'

Resolve "Fix personal note filter id_ variable"

Closes #84

See merge request !59
parents 303df022 ff18c548
No related branches found
No related tags found
1 merge request!59Resolve "Fix personal note filter id_ variable"
Pipeline #2986 passed
......@@ -381,8 +381,8 @@ def edit_personal_note_filter(
) -> HttpResponse:
context = {}
if id:
personal_note_filter = PersonalNoteFilter.objects.get(id=id)
if id_:
personal_note_filter = PersonalNoteFilter.objects.get(id=id_)
context["personal_note_filter"] = personal_note_filter
personal_note_filter_form = PersonalNoteFilterForm(
request.POST or None, instance=personal_note_filter
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment