mirror of
https://github.com/Balshgit/public.git
synced 2025-09-12 16:40:43 +03:00
9 lines
250 B
Python
9 lines
250 B
Python
from django import forms
|
|
|
|
|
|
class GithubForm(forms.Form):
|
|
|
|
search_field = forms.CharField(max_length=20, required=True,
|
|
help_text='search github stars',
|
|
label='github_search',)
|