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')
16 def __unicode__(self
):
19 class IdentityURL(Entity
):
20 url
= Field(Unicode(255))
21 belongs_to('user', of_kind
='User')