Ajout des modules initiaux
darcs-hash:20070124114812-f46e9-171ef12f1e1b89ae005adf4aab6f6535fb9289e6.gz
This commit is contained in:
parent
8713311bc1
commit
ed3ab40ccd
80 changed files with 4852 additions and 5 deletions
16
intranet/modules/infos/main.py
Normal file
16
intranet/modules/infos/main.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
from ClassesIntranet.ModuleBase import ModuleBase
|
||||
|
||||
|
||||
class main(ModuleBase):
|
||||
def category(self):
|
||||
return u"Services"
|
||||
def title(self):
|
||||
return u"Informations utiles"
|
||||
|
||||
def index(self):
|
||||
return {
|
||||
'template':'info-diverses',
|
||||
'values':{},
|
||||
'stylesheets':['infos.css'],
|
||||
}
|
||||
index.exposed = True
|
Loading…
Add table
Add a link
Reference in a new issue