Re: Admin interface using CharField as a primary key

2006-03-30 Thread Daniel Bimschas
Forgot: In the trunk the problem also exists. 2006/3/30, Daniel Bimschas <[EMAIL PROTECTED]>: > If have a model like this: > > class Article(meta.Model): > cite_key = meta.CharField(maxlength=255, primary_key=True) > ... > > where "cite_key" is a unique string used in a bibt

Re: Admin interface using CharField as a primary key

2006-03-30 Thread Daniel Bimschas
If have a model like this: class Article(meta.Model): cite_key = meta.CharField(maxlength=255, primary_key=True) ... where "cite_key" is a unique string used in a bibtex-file. The problem now are the links to the edit pages created by the admin interface. The html-code is fo

Re: Admin interface using CharField as a primary key

2006-03-30 Thread Andy Dustman
On 3/30/06, Daniel Bimschas <[EMAIL PROTECTED]> wrote: > > Hi there! > > I'm currently trying to convert an old webapp written in PHP into a > django-based app. The PHP-System used VARCHAR-Fields as primary keys > in the MySQL - DB. > > Now, if i convert the data for the new tables created by Djan

Admin interface using CharField as a primary key

2006-03-30 Thread Daniel Bimschas
Hi there! I'm currently trying to convert an old webapp written in PHP into a django-based app. The PHP-System used VARCHAR-Fields as primary keys in the MySQL - DB. Now, if i convert the data for the new tables created by Django, I have the problem that the admin interface can't edit any entrie