mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 01:16:27 +00:00
11 lines
274 B
Python
11 lines
274 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)
|
|
|