2 # floof/floof/model/users.py
4 # Copyright (c) 2009 Scribblr
7 # from elixir import Entity, Field, Unicode, belongs_to, has_many
11 name
= Field(Unicode(20))
12 uploads
= OneToMany('Art')
13 has_many('identity_urls', of_kind
='IdentityURL')
14 searches
= OneToMany('SavedSearch')
15 galleries
= OneToMany('GalleryWidget')
17 def __unicode__(self
):
20 class IdentityURL(Entity
):
21 url
= Field(Unicode(255))
22 belongs_to('user', of_kind
='User')