mirror of
https://github.com/HS-Flensburg-Klein/hausarbeit-hikmat_galan_neumann_stark_becker
synced 2025-04-04 21:43:31 +00:00
12 lines
180 B
Python
12 lines
180 B
Python
from django import forms
|
|
|
|
from .models import *
|
|
|
|
from datetime import date
|
|
|
|
|
|
class CommentForm(forms.ModelForm):
|
|
class Meta:
|
|
model = Comment
|
|
fields = '__all__'
|