Added sendmail library
This commit is contained in:
parent
59bd97be74
commit
e40b618349
6 changed files with 228 additions and 16 deletions
|
|
@ -1,8 +1,13 @@
|
|||
from flask import Blueprint
|
||||
from paramecio2.libraries.mtemplates import PTemplate, env_theme
|
||||
try:
|
||||
from flask import Blueprint
|
||||
from paramecio2.libraries.mtemplates import PTemplate, env_theme
|
||||
|
||||
admin_app=Blueprint('admin_app', __name__, static_folder='static')
|
||||
admin_app=Blueprint('admin_app', __name__, static_folder='static')
|
||||
|
||||
env=env_theme(__file__)
|
||||
|
||||
t=PTemplate(env)
|
||||
env=env_theme(__file__)
|
||||
|
||||
t=PTemplate(env)
|
||||
|
||||
except:
|
||||
pass
|
||||
|
|
|
|||
9
paramecio2/modules/admin/templates/users.phtml
Normal file
9
paramecio2/modules/admin/templates/users.phtml
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<%inherit file="dashboard.phtml"/>
|
||||
<%block name="content">
|
||||
<div class="title">
|
||||
Welcome to Paramecio Admin
|
||||
</div>
|
||||
<div class="cont">
|
||||
From here you can admin your site
|
||||
</div>
|
||||
</%block>
|
||||
Loading…
Add table
Add a link
Reference in a new issue