1
0
Fork 0

Merge pull request #715 from mouse-reeve/reporting

Reporting
This commit is contained in:
Mouse Reeve 2021-03-12 16:28:15 -08:00 committed by GitHub
commit b64fb3e0aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
24 changed files with 679 additions and 21 deletions

View file

@ -231,3 +231,9 @@ class ListForm(CustomForm):
class Meta:
model = models.List
fields = ["user", "name", "description", "curation", "privacy"]
class ReportForm(CustomForm):
class Meta:
model = models.Report
fields = ["user", "reporter", "statuses", "note"]