##// END OF EJS Templates
Added custom templates, did over check of code to make it work....
Added custom templates, did over check of code to make it work. Added templating for add repository, and styling. App globals now handles our custom static files. (logo etc can be changed)

File last commit:

r0:564e4082 default
r20:bbaab750 default
Show More
__init__.py
7 lines | 315 B | text/x-python | PythonLexer
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import relation, backref
from sqlalchemy import ForeignKey, Column, Table, Sequence
from sqlalchemy.types import *
from sqlalchemy.databases.mysql import *
from sqlalchemy.databases.postgres import *
from pylons_app.model.meta import Base