Add Post a Note page

This commit is contained in:
2025-12-10 19:21:57 +05:30
parent 27aac4da8c
commit 495dfe7b8e
5 changed files with 45 additions and 2 deletions

8
notes/forms.py Normal file
View File

@@ -0,0 +1,8 @@
from django import forms
from notes.models import Note
class PostNoteForm(forms.ModelForm):
class Meta:
model = Note
fields = ["to_user", "note"]