Move the server code inside server dir

This commit is contained in:
2025-12-18 02:17:55 +05:30
parent 2d90a4017f
commit c84866210a
32 changed files with 1 additions and 1 deletions

9
server/notes/forms.py Normal file
View File

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