diff --git a/wscacicneo/__init__.py b/wscacicneo/__init__.py
index ad0d639..9383e6d 100644
--- a/wscacicneo/__init__.py
+++ b/wscacicneo/__init__.py
@@ -16,6 +16,6 @@ def main(global_config, **settings):
config.add_route('busca', 'busca')
config.add_route('diagnostic', 'diagnostic')
config.add_route('reports', 'reports')
-
+ config.add_route('sobre', 'sobre')
config.scan()
return config.make_wsgi_app()
diff --git a/wscacicneo/static/sobre.js b/wscacicneo/static/sobre.js
new file mode 100644
index 0000000..5ee301d
--- /dev/null
+++ b/wscacicneo/static/sobre.js
@@ -0,0 +1,17 @@
+ var html = "
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse turpis eros, accumsan in dignissim nec, rhoncus sed nunc. Integer sit amet venenatis ante, id lacinia velit. Fusce a elit purus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam aliquam lacus accumsan cursus tempus. Suspendisse ante ipsum, mollis eget ultrices eget, cursus sed quam. Fusce eget dui ut felis scelerisque sodales. Maecenas pellentesque dolor ac erat fringilla, ut vehicula mi viverra. In non turpis a massa auctor accumsan.i
";
+
+
+Ext.onReady(function(){
+
+ Ext.create('Ext.Panel', {
+ layout: 'fit',
+ height: '220px',
+ style: {margin: '15px'},
+ frame: true,
+ draggable: true,
+ title: 'SOBRE O SUPER GERENTE',
+ titleAlign: 'center',
+ html: html,
+ renderTo: 'g1'
+ });
+});
diff --git a/wscacicneo/templates/sobre.pt b/wscacicneo/templates/sobre.pt
new file mode 100644
index 0000000..1e2d7b2
--- /dev/null
+++ b/wscacicneo/templates/sobre.pt
@@ -0,0 +1,10 @@
+
+
+
+
+
+
diff --git a/wscacicneo/views.py b/wscacicneo/views.py
index 0780d61..c5d06fc 100644
--- a/wscacicneo/views.py
+++ b/wscacicneo/views.py
@@ -39,6 +39,11 @@ def diagnostic(request):
def reports(request):
return {'project': 'WSCacicNeo'}
+@view_config(route_name='sobre', renderer='templates/sobre.pt')
+def reports(request):
+ return {'project': 'WSCacicNeo'}
+
+
@view_config(route_name='busca', renderer='templates/busca.pt')
def my_view8(request):
query = session.query(SistemaOperacional).all()
--
libgit2 0.21.2