Re: Extending Admin Interface - Image Manipulation After Upload

2009-01-13 Thread Ty
Thanks for the help, much appreciated. On Jan 13, 1:28 pm, Brian Neal wrote: > On Jan 13, 12:06 pm, Ty wrote: > > > > > I've started creating a photo blog project to get familiar with Python > > and Django. I'm using Python 2.6.1 and Django 1.0.2. I'm

Re: Extending Admin Interface - Image Manipulation After Upload

2009-01-13 Thread Brian Neal
On Jan 13, 12:06 pm, Ty wrote: > I've started creating a photo blog project to get familiar with Python > and Django. I'm using Python 2.6.1 and Django 1.0.2. I'm working on > the models and the administration first, before I tackle the front end > side of the site. I

Extending Admin Interface - Image Manipulation After Upload

2009-01-13 Thread Ty
I've started creating a photo blog project to get familiar with Python and Django. I'm using Python 2.6.1 and Django 1.0.2. I'm working on the models and the administration first, before I tackle the front end side of the site. I have everything working fine, for the exception of an image upload

Re: extending admin interface

2005-08-31 Thread Igor Goryachieff
On Tue, Aug 30, 2005 at 08:13:34PM -0500, Adrian Holovaty wrote: > Regarding the error, you'll need to make sure your __init__.py file > contains "myapp" in its "__all__" variable, assuming "myapp.py" is the > name of your model module. See >

Re: extending admin interface

2005-08-30 Thread Adam
I haven't seen that error, but one thing I noticed about your model is that I don't think you can just add things to the admin interface (like you're trying to do with 'Extra info'). You have to copy the admin section of auth.User if you want everything that's already there to also show up. For

Re: extending admin interface

2005-08-30 Thread Igor Goryachieff
On Tue, Aug 30, 2005 at 09:56:42AM -0500, Adrian Holovaty wrote: > Yeah, whoever created that wiki page did it before the model syntax > changed. Here's an official example of subclassing models: > > http://www.djangoproject.com/documentation/models/subclassing/ I have seen that already, but it

Re: extending admin interface

2005-08-30 Thread Adam
Yeah, I didn't update the wiki page because you told me the page you pointed to was coming. I'll replace the previous wiki page with a link to http://www.djangoproject.com/d ocumentation/models/subclassin g/ Adam

Re: extending admin interface

2005-08-30 Thread Adrian Holovaty
On 8/30/05, Igor Goryachieff <[EMAIL PROTECTED]> wrote: > > http://code.djangoproject.com/wiki/ModelInheritance > > This code doesn't work. Is it connected to ticket #122? Yeah, whoever created that wiki page did it before the model syntax changed. Here's an official example of subclassing

Re: extending admin interface

2005-08-30 Thread Igor Goryachieff
On Tue, Aug 30, 2005 at 02:21:23AM -0700, asrenzo wrote: > I guess this could help you : > > http://code.djangoproject.com/wiki/ModelInheritance This code doesn't work. Is it connected to ticket #122? -- Igor Goryachieff Jabber: [EMAIL PROTECTED] http://goryachev.org/

Re: extending admin interface

2005-08-30 Thread Igor Goryachieff
On Tue, Aug 30, 2005 at 02:21:23AM -0700, asrenzo wrote: > I guess this could help you : > > http://code.djangoproject.com/wiki/ModelInheritance It seems to helpful for my purposes. Thanks! -- Igor Goryachieff Jabber: [EMAIL PROTECTED] http://goryachev.org/

Re: extending admin interface

2005-08-30 Thread asrenzo
I guess this could help you : http://code.djangoproject.com/wiki/ModelInheritance Regards, Laurent.

extending admin interface

2005-08-30 Thread Igor Goryachieff
Hello, guys! Is there a good solution to extend admin interface (including additional fields for users table) without hacking Django sources? In example I want to add extra fields for users table such as site, birthdate, jabber and so on and manage it from admin interface. Thank you! --