1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137 | from django.db import models
from django.utils.translation import ugettext_lazy as _
from django.db.models import permalink
from django.contrib.localflavor.us.models import PhoneNumberField
from tagging.fields import TagField
import tagging
class PlaceType(models.Model):
"""Place types model."""
title = models.CharField(_('title'), max_length=100, unique=True)
slug = models.SlugField(_('slug'), unique=True)
class Meta:
verbose_name = _('place type')
verbose_name_plural = _('place types')
db_table = 'place_types'
class Admin:
pass
def __unicode__(self):
return u'%s' % self.title
@permalink
def get_absolute_url(self):
return ('place_type_detail', None, {'slug': self.slug})
class City(models.Model):
"""City model."""
city = models.CharField(_('city'), max_length=100)
state = models.CharField(_('state'), max_length=100)
slug = models.SlugField(_('slug'), unique=True)
class Meta:
verbose_name = _('city')
verbose_name_plural = _('cities')
db_table = 'place_cities'
unique_together = (('city', 'state',),)
ordering = ('state', 'city',)
class Admin:
pass
def __unicode__(self):
return u'%s, %s' % (self.city, self.state)
@permalink
def get_absolute_url(self):
return ('place_city_detail', None, {'slug': self.slug})
class Point(models.Model):
"""Point model."""
latitude = models.FloatField(_('latitude'), blank=True, null=True)
longitude = models.FloatField(_('longitude'), blank=True, null=True)
address = models.CharField(_('address'), max_length=200, blank=True)
city = models.ForeignKey(City)
zip = models.CharField(_('zip'), max_length=10, blank=True)
country = models.CharField(_('country'), blank=True, max_length=100)
class Meta:
verbose_name = _('point')
verbose_name_plural = _('points')
db_table = 'place_points'
ordering = ('address',)
class Admin:
list_display = ('address', 'city', 'zip', 'latitude', 'longitude')
list_filter = ('city',)
search_fields = ('address',)
def __unicode__(self):
return u'%s' % self.address
class Place(models.Model):
"""Place model."""
STATUS_CHOICES = (
(0, 'Inactive'),
(1, 'Active'),
)
point = models.ForeignKey(Point)
prefix = models.CharField(_('Pre-name'), blank=True, max_length=20)
title = models.CharField(_('title'), max_length=255)
slug = models.SlugField(_('slug'))
nickname = models.CharField(_('nickname'), blank=True, max_length=100)
unit = models.CharField(_('unit'), blank=True, max_length=100, help_text='Suite or Apartment #')
phone = PhoneNumberField(_('phone'), blank=True)
url = models.URLField(_('url'), blank=True, verify_exists=False)
email = models.EmailField(_('email'), blank=True)
description = models.TextField(_('description'), blank=True)
status = models.IntegerField(_('status'), choices=STATUS_CHOICES, default=1)
created = models.DateTimeField(auto_now_add=True)
modified = models.DateTimeField(auto_now=True)
place_types = models.ManyToManyField(PlaceType, blank=True)
tags = TagField()
class Meta:
verbose_name = _('place')
verbose_name_plural = _('places')
db_table = 'places'
ordering = ('title',)
class Admin:
list_display = ('title', 'point', 'city', 'status')
list_filter = ('status', 'place_types')
search_fields = ('title',)
def __unicode__(self):
return u'%s' % self.full_title
@property
def city(self):
return u'%s' % self.point.city
@property
def full_title(self):
return u'%s %s' % (self.prefix, self.title)
@permalink
def get_absolute_url(self):
return ('place_detail', None, { 'slug': self.slug } )
@property
def longitude(self):
return self.point.longitude
@property
def latitude(self):
return self.point.latitude
@property
def address(self):
return u'%s, %s %s' % (self.point.address, self.point.city, self.point.zip)
|