mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-16 16:00:17 +02:00
6 lines
156 B
Python
6 lines
156 B
Python
from django import forms
|
|
|
|
|
|
class CorputilsSearchForm(forms.Form):
|
|
search_string = forms.CharField(max_length=254, required=True, label="Search String")
|