Skip to content
Snippets Groups Projects
Commit ff18c548 authored by Hangzhi Yu's avatar Hangzhi Yu
Browse files

Fix id_ variable name

parent 303df022
No related branches found
No related tags found
1 merge request!59Resolve "Fix personal note filter id_ variable"
Pipeline #2931 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