Remove the settings.py file (for security)

Also get the rate lot totally working
This commit is contained in:
Bradlee Speice
2013-10-18 22:42:08 -04:00
parent 664aec18ab
commit e1c789d8e3
4 changed files with 4 additions and 163 deletions

View File

@ -84,6 +84,6 @@ class ParkingRating(models.Model):
RATING_FULL: 100,
}
rating = models.CharField(max_length=10, choices=RATING_CHOICES)
rating = models.CharField(max_length=3, choices=RATING_CHOICES)
created = models.DateTimeField(default=datetime.now)
parking_lot = models.ForeignKey(ParkingLot)