mirror of https://gitlab.federez.net/re2o/re2o
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
273 B
10 lines
273 B
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)
|
|
|