mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-10 04:50:16 +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")
|