Files
vrobbler/vrobbler/apps/webpages/forms.py
Colin Powell 5934dcdf8e
All checks were successful
build & deploy / test (push) Successful in 1m53s
build & deploy / deploy (push) Successful in 1m12s
[format] Blacken everything
2026-03-11 23:54:24 -04:00

8 lines
214 B
Python

from django import forms
from django.urls import reverse_lazy
class WebPageReadForm(forms.Form):
notes = forms.CharField(widget=forms.Textarea, required=False)
success_url = reverse_lazy("vrobbler-home")