Convert 'people' view to use MasterView pattern.
This commit is contained in:
parent
717a614194
commit
fee00b96a2
5 changed files with 62 additions and 139 deletions
|
@ -29,7 +29,7 @@ from formencode import Schema
|
|||
from .core import Form, Field, FieldSet
|
||||
from .simpleform import SimpleForm, FormRenderer
|
||||
from .alchemy import AlchemyForm
|
||||
from .fields import *
|
||||
from .fields import AssociationProxyField
|
||||
from .renderers import *
|
||||
|
||||
from tailbone.forms import renderers
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
# -*- coding: utf-8 -*-
|
||||
################################################################################
|
||||
#
|
||||
# Rattail -- Retail Software Framework
|
||||
# Copyright © 2010-2012 Lance Edgar
|
||||
# Copyright © 2010-2015 Lance Edgar
|
||||
#
|
||||
# This file is part of Rattail.
|
||||
#
|
||||
|
@ -21,17 +20,15 @@
|
|||
# along with Rattail. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
################################################################################
|
||||
"""
|
||||
FormAlchemy Fields
|
||||
"""
|
||||
|
||||
"""
|
||||
``tailbone.forms.fields`` -- FormAlchemy Fields
|
||||
"""
|
||||
from __future__ import unicode_literals, absolute_import
|
||||
|
||||
from formalchemy import Field
|
||||
|
||||
|
||||
__all__ = ['AssociationProxyField']
|
||||
|
||||
|
||||
def AssociationProxyField(name, **kwargs):
|
||||
"""
|
||||
Returns a FormAlchemy ``Field`` class which is aware of association
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue