Mercurial > public > sg101
view gpp/core/models.py @ 6:b6263ac72052
Use DRY principle to manage third party javascript libraries. Created script_tags template tags to generate the correct link and script tags for 3rd party libraries. The settings.py file is the only place where the full path name is specified.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 11 Apr 2009 22:50:56 +0000 |
parents | f3ad863505bf |
children | 91fd31dc78fb |
line wrap: on
line source
""" This file contains the core Models used in gpp. """ from django.db import models class DebugLog(models.Model): '''Model to represent debug logs used during development; arbitary text can be stored''' LOG_LEVELS = ( (0, 'Not Set'), (10, 'Debug'), (20, 'Info'), (30, 'Warning'), (40, 'Error'), (50, 'Critical'), ) timestamp = models.DateTimeField(auto_now_add = True) level = models.IntegerField(choices = LOG_LEVELS) msg = models.TextField() def __unicode__(self): return '%s - %s' % (self.timestamp.strftime('%m/%d/%Y %H:%M:%S'), self.msg[:64]) class Meta: ordering = ('-timestamp', )