Split backend in applications

This commit is contained in:
Edgar P. Burkhart 2023-04-22 11:16:42 +02:00
parent a0d0b5d594
commit b05c3e6760
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227
47 changed files with 1463 additions and 866 deletions

7
nummi/search/forms.py Normal file
View file

@ -0,0 +1,7 @@
from django import forms
from django.utils.translation import gettext_lazy as _
class SearchForm(forms.Form):
template_name = "main/form/search.html"
search = forms.CharField(label=_("Search"), max_length=128)