test/data/entities.py
author Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
Wed, 18 Feb 2009 11:41:35 +0100
branchtls-sprint
changeset 771 ae1b0081ff30
parent 744 4da6e0f4df2a
child 1473 717dea3362c0
permissions -rw-r--r--
fix selector of EntityRelatedTab, next step is to find a way to avoid this kind of selector

from cubicweb.entities import AnyEntity, fetch_config

class Personne(AnyEntity):
    """customized class forne Person entities"""
    id = 'Personne'
    fetch_attrs, fetch_order = fetch_config(['nom', 'prenom'])
    rest_attr = 'nom'


class Societe(AnyEntity):
    id = 'Societe'
    fetch_attrs = ('nom',)
    
class Note(AnyEntity):
    id = 'Note'