Files @ bbaab7501c1a
Branch filter:

Location: kallithea/pylons_app/dbmodel/__init__.py - annotation

Marcin Kuzminski
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)
1
2
3
4
5
6
7
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