On Fri, Jun 6, 2008 at 3:00 AM, puff <[EMAIL PROTECTED]> wrote:
>
> It turns out that Django doesn't like '/' or ':' in the primary key.
> Not sure why but that's just the way it is.
>
> On Jun 4, 6:55 pm, puff <[EMAIL PROTECTED]> wrote:
>> I'm having some difficulty with the admin interface that has me
>> stumped and could use a clue or two.
>>
>> I've a table that looks like this:
>>
>> class Destination(models.Model):
>>     name = models.CharField( 'Name', max_length = LENGTH_NAMES_LONG,
>>         primary_key = True,
>>         help_text = 'Destination name in form <node>/path')
>>    ...
>>
>> The values of name are of the form
>>    aaa/bbb/ccc
>>
>> When I use the admin interface to edit one of these the admin screen
>> displays OK and when I save my save method  executes (there is a print
>> in it) and the record is saved (I can examine it in MySQL and it's
>> there).  All seems well except that I get the following error screen
>> message:
>>
>> Page not found (404)
>> Request Method:         GET
>> Request URL:    http://localhost:8000/admin/xx/destination/Standby_1/RAID/
>>
>> destination object with primary key u'Standby_1/RAID' does not exist
>>
>> You're seeing this error because you have DEBUG = True in your Django
>> settings file. Change that to False, and Django will display a
>> standard 404 page.
>>
>> The name value was 'Standby_1/RAID/RAID_1'.  Can anyone provide any
>> clues about what is happening?

It's a problelm with the URLpatterns for the admin interface. Django
assumes that the primary key can be used as part of the URL when
redirecting to the view page after editing; if you have '/' in your
URL, the URLpatterns for the admin application get confused, so you
get a 404.

This is an edge case bug, but one reporting anyway. Please open a ticket.

Yours,
Russ Magee %-)

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