Added sendmail library

This commit is contained in:
Antonio de la Rosa 2020-07-14 13:45:42 +02:00
parent 59bd97be74
commit e40b618349
6 changed files with 228 additions and 16 deletions

View file

@ -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

View 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>