mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 09:26:27 +00:00
11 lines
273 B
Python
11 lines
273 B
Python
|
from django.db import models
|
||
|
from django import forms
|
||
|
from django.forms import Form
|
||
|
from django.forms import ModelForm
|
||
|
|
||
|
from users.models import User
|
||
|
# Create your models here.
|
||
|
|
||
|
class SearchForm(Form):
|
||
|
search_field = forms.CharField(label = 'Search', max_length = 100)
|