Added first files for admin and login/signup in admin
This commit is contained in:
parent
e0ed00af8c
commit
d9b62719d7
139 changed files with 18408 additions and 4 deletions
21
paramecio2/libraries/db/extraforms/fileform.py
Normal file
21
paramecio2/libraries/db/extraforms/fileform.py
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
from paramecio2.libraries.db.coreforms import BaseForm
|
||||
from paramecio2.libraries.mtemplates import env_theme, PTemplate
|
||||
|
||||
env=env_theme(__file__)
|
||||
|
||||
t=PTemplate(env)
|
||||
|
||||
class FileForm(BaseForm):
|
||||
|
||||
def __init__(self, name, value, path):
|
||||
|
||||
super().__init__(name, value)
|
||||
|
||||
self.t=t
|
||||
self.enctype=True
|
||||
|
||||
def form(self):
|
||||
|
||||
return self.t.load_template('forms/fileform.phtml', form=self)
|
||||
Loading…
Add table
Add a link
Reference in a new issue