diff options
| author | tom christie tom@tomchristie.com | 2011-02-01 22:37:51 +0000 |
|---|---|---|
| committer | tom christie tom@tomchristie.com | 2011-02-01 22:37:51 +0000 |
| commit | 6ce5b643fbeab322d85dbaed87d11ffb950c5bed (patch) | |
| tree | e08ad4cc8f465390564a3003daf8cf04b708438b /examples/simpleexample/models.py | |
| parent | 196c21f37632e213702995651fd739426b6ee13a (diff) | |
| download | django-rest-framework-6ce5b643fbeab322d85dbaed87d11ffb950c5bed.tar.bz2 | |
Added resourceexample, moved simpleexample to modelresourceexample
Diffstat (limited to 'examples/simpleexample/models.py')
| -rw-r--r-- | examples/simpleexample/models.py | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/examples/simpleexample/models.py b/examples/simpleexample/models.py deleted file mode 100644 index b628f895..00000000 --- a/examples/simpleexample/models.py +++ /dev/null @@ -1,23 +0,0 @@ -from django.db import models - -MAX_INSTANCES = 10 - -class MyModel(models.Model): - foo = models.BooleanField() - bar = models.IntegerField(help_text='Must be an integer.') - baz = models.CharField(max_length=32, help_text='Free text. Max length 32 chars.') - created = models.DateTimeField(auto_now_add=True) - - class Meta: - ordering = ('created',) - - def save(self, *args, **kwargs): - """For the purposes of the sandbox, limit the maximum number of stored models.""" - super(MyModel, self).save(*args, **kwargs) - while MyModel.objects.all().count() > MAX_INSTANCES: - MyModel.objects.all()[0].delete() - - @models.permalink - def get_absolute_url(self): - return ('simpleexample.views.MyModelResource', (self.pk,)) - |
