Can you take a first_name & a last_name field and then in the same
model make a field that is full_name? ie
first_name = models.CharField(max_length=75)
last_name = models.CharField(max_length=75)
full_name = models.CharField(value=first_name + last_name,
max_length=100)

I know that is not correct but that gives you an idea what I'm trying
to do.

Thanks,
Luke

--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to