Add comment system with models, forms, and UI integration for lessons
This commit is contained in:
parent
c22622ebc1
commit
95111240bc
26 changed files with 1001 additions and 77 deletions
13
courses/forms.py
Normal file
13
courses/forms.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
from django import forms
|
||||
|
||||
|
||||
class CommentForm(forms.Form):
|
||||
content = forms.CharField(
|
||||
label="",
|
||||
widget=forms.Textarea(attrs={
|
||||
"rows": 3,
|
||||
"placeholder": "Écrire un commentaire…",
|
||||
}),
|
||||
max_length=5000,
|
||||
)
|
||||
parent = forms.IntegerField(required=False, widget=forms.HiddenInput())
|
||||
Loading…
Add table
Add a link
Reference in a new issue