12 lines
295 B
Python
12 lines
295 B
Python
from django import forms
|
|
|
|
|
|
class NummiFileInput(forms.ClearableFileInput):
|
|
template_name = "main/form/fileinput.html"
|
|
|
|
|
|
class NummiForm(forms.ModelForm):
|
|
template_name = "main/form/form_base.html"
|
|
|
|
def __init__(self, *args, user, **kwargs):
|
|
super().__init__(*args, **kwargs)
|