Files @ a8710b4b9f2a
Branch filter:

Location: website/www/conservancy/apps/worldmap/models.py

Denver Gingerich
Copyleft Compliance: mostly minor fixes to new pgs

These are mostly minor edits (typo fixes, etc.) to the enforcement
strategy and firmware liberation pages that were just added.

The one large change was to replace the first paragraph of the
enforcement strategy page with the full Conservancy description used
previously. The glue text used to shorten it appeared unsalvageable
and it wasn't immediately obvious how to replace it with something
better, so we used the full description instead.
from django.db import models

class EarthLocation(models.Model):
    """Represents latitude and longitude, with a label"""

    label = models.CharField(max_length=300, unique=True)
    latitude = models.DecimalField(max_digits=9, decimal_places=6)
    longitude = models.DecimalField(max_digits=9, decimal_places=6)

    date_created = models.DateTimeField(auto_now_add=True)
    date_last_modified = models.DateTimeField(auto_now=True)

    class Meta:
        unique_together = (("latitude", "longitude"),)

    def __unicode__(self):
        return self.label

    def google_maps_link(self):
        return ("http://maps.google.com/maps?ll=%s,%s&z=15"
                % (self.latitude, self.longitude))

    default_map_link = google_maps_link

    def html_map_link(self): # for Admin, fixme: fix_ampersands
        return '<a href="%s">map link</a>' % self.default_map_link()
    html_map_link.allow_tags = True