All,
  I have modified the original example model based on your suggestions,
and I feel like I'm another step closer to what I'm trying to
accomplish.  Thanks for the suggestions!  However, one issue that I
have with the current solution is scalability.  Because there will be
thousands of possible job locations,  when a site manager creates a Job
based on the current solution they would be presented with thousands of
possible cities when they select the city drop down box.  This would
make it difficult for the site manager to associate the Job they are
creating with a location.  How would I modify the current model example
v0.2  to allow a more focused selection of locations in the Admin?

Thanks!
-Nick

P.S. :  Sorry for the inconsistencies in the original model example.
At the time of writing I was switching from Region and Area to State
and City in an attempt to make the example a little easier to
understand :).


Example Model: v0.2
###################################################################################

from django.db import models

class Country(models.Model):
    name = models.CharField(maxlength=100, core=True, unique=True)

    def __str__(self):
        return (self.name)

    class Admin:
        pass

class State(models.Model):
    country = models.ForeignKey(Country)
    name = models.CharField(maxlength=100, unique=True, core=True)

    def __str__(self):
        return "%s | %s" % (self.name, self.country)

    class Admin:
        pass

class City(models.Model):
    state = models.ForeignKey(State)
    name = models.CharField(maxlength=100, unique=True, core=True)

    def __str__(self):
        return "%s, %s" % (self.name, self.state)

    class Admin:
        pass

class Job(models.Model):
    created_on = models.DateTimeField(auto_now_add=True)
    city = models.ForeignKey(City)
    title = models.CharField(maxlength=100)
    summary = models.CharField(maxlength=500)
    body = models.TextField(blank=True, help_text="Optional")
    image = models.URLField(verify_exists=True, blank=True,
help_text="Optional")
    file = models.URLField(verify_exists=True, blank=True,
help_text="Optional" )

    def __str__(self):
        return (self.title)

    class Admin:
        pass


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to