Hi All,

I tried this:

from django.db import models

signins = models.IntegerField(
     default=0,
     db_index=True,
     verbose_name='Total Signins'
     )

class User(models.Model):
     name = models.CharField(
         max_length=50,
         primary_key=True,
         verbose_name='Username'
         )
     signins = signins

class Month(models.Model):
     user = models.ForeignKey(User)
     monthname = models.CharField(
         max_length=14,
         db_index=True,
         verbose_name='Month'
         )
     signins = signins

...but the effect was to randomise the order of the fields in the admin 
interface :-(

How should I re-use field definitions so I'm not violating DRY but also 
such that field ordering stays consistent?

cheers,

Chris

-- 
Simplistix - Content Management, Batch Processing & Python Consulting
            - http://www.simplistix.co.uk

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to