I know it's not smart. Not my code. It's a legacy code I'm trying to
create an admin panel for.

On Jan 16, 12:34 pm, Maarten <[EMAIL PROTECTED]> wrote:
> Just on another note,
>
> it doesn't seem that smart to me to use a CharField(max_length=600)
> for a primary key.
> I'd use the normal id as primary key, and if you need to use the url
> actively in searches I'd consider adding an index on the url field.
>
> cheers,
> Maarten
>
> On Jan 15, 4:12 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
>
> > I know I should have sent it using a ticket, but I'm being rejected
> > for some reason as a spammer. Hope this one will go throgh.
>
> > The admin panel cannot get a url as a primary key of a model.
> > I can actually understand why this happens, and that makes me more
> > thrilled to help. Take this model for example:
> > class Url(models.Model):
> >    url = models.CharField(max_length=600, primary_key=True)
> >    rate = models.IntegerField(null=True, blank=True)
> >    class Admin:
> >       pass
>
> > in the case Url.url=http://yahoo.com'(hadto add slashes to avoid
> > being marked as a spammer on the ticket system, but the point should
> > be understood
> > As the primary key is a url, the relational link inside the admin
> > panel, becomes absolute. I cannot use the admin panel to rate it.
> > What do you think of that?
--~--~---------~--~----~------------~-------~--~----~
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