mirror of
https://gitlab.com/brutaldon/brutaldon
synced 2025-06-05 21:49:32 +02:00
Form and view for plain tooting.
Does not include media yet, although the form does.
This commit is contained in:
@ -1,5 +1,11 @@
|
||||
from django import forms
|
||||
|
||||
PRIVACY_CHOICES = (('public', 'Public'),
|
||||
('unlisted', 'Unlisted'),
|
||||
('private', 'Private'),
|
||||
('direct', 'Direct'))
|
||||
|
||||
|
||||
class LoginForm(forms.Form):
|
||||
instance = forms.CharField(label="Instance",
|
||||
max_length=256)
|
||||
@ -14,4 +20,20 @@ class SettingsForm(forms.Form):
|
||||
"""FULLBRUTALISM mode strips away most of the niceties of modern web design when
|
||||
brutaldon is viewed in a graphical browser. It has no effect in text-only browsers.""")
|
||||
|
||||
|
||||
|
||||
class PostForm(forms.Form):
|
||||
"""def status_post(self, status, in_reply_to_id=None, media_ids=None,
|
||||
sensitive=False, visibility=None, spoiler_text=None):"""
|
||||
status = forms.CharField(label="Toot", max_length=500, widget=forms.Textarea)
|
||||
visibility = forms.ChoiceField(label="Toot visibility", choices=PRIVACY_CHOICES)
|
||||
spoiler_text = forms.CharField(label="CW or Subject", max_length=500)
|
||||
media_file_1 = forms.FileField(label = "Media attachment 1")
|
||||
media_text_1 = forms.CharField(label="Describe media attachment 1.", max_length=500)
|
||||
media_file_2 = forms.FileField(label = "Media attachment 2")
|
||||
media_text_2 = forms.CharField(label="Describe media attachment 2.", max_length=500)
|
||||
media_file_3 = forms.FileField(label = "Media attachment 3")
|
||||
media_text_3 = forms.CharField(label="Describe media attachment 3.", max_length=500)
|
||||
media_file_4 = forms.FileField(label = "Media attachment 4")
|
||||
media_text_4 = forms.CharField(label="Describe media attachment 4.", max_length=500)
|
||||
media_rensitive = forms.BooleanField(label="Sensitive media?", required=False)
|
||||
|
||||
|
Reference in New Issue
Block a user