-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.py
More file actions
30 lines (24 loc) · 749 Bytes
/
Index.py
File metadata and controls
30 lines (24 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
###########################################################
#
# Copyright (c) 2005, Southpaw Technology
# All Rights Reserved
#
# PROPRIETARY INFORMATION. This software is proprietary to
# Southpaw Technology, and is not to be reproduced, transmitted,
# or disclosed in any way without written permission.
#
#
#
from pyasm.web import AppServer
# get the import to this project's modules
from pyasm.web import get_site_import
exec( get_site_import(__file__) )
class Index(AppServer):
def get_page_widget(my):
return IndexWdg()
def get_top_wdg(my):
from tactic.ui.app import TopWdg
my.top = TopWdg()
body = my.top.get_body()
body.add_class("body_login")
return my.top