Re: admin problems with the docu

2009-08-17 Thread quant
hi now it works, i think i only had to restart my computer, doessent know why, but it works thanks to all --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Re: admin problems with the docu

2009-08-17 Thread quant
hi now it works, i think i only had to restart my computer, doessent know why, but it works thanks to all --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Re: admin problems with the docu

2009-08-14 Thread Karen Tracey
On Fri, Aug 14, 2009 at 4:15 AM, quant wrote: > > hi > > so i read and tryed all your idears here, but nothing of these is > working... i'am running Django version 1.0.2 final > > and my settings.py is looking like this: > > http://dpaste.com/80427 > > and

Re: admin problems with the docu

2009-08-14 Thread quant
hi so i read and tryed all your idears here, but nothing of these is working... i'am running Django version 1.0.2 final and my settings.py is looking like this: http://dpaste.com/80427 and my urls.py ist this: http://dpaste.com/80430 hope anyone see the problem going on here ans thanks to

Re: admin problems with the docu

2009-08-13 Thread Karen Tracey
On Thu, Aug 13, 2009 at 9:49 AM, Alexandru-Emil Lupu wrote: > HI! > the doc is updated for the 1.1 version .. > try this > > urlpatterns = patterns('', >(r'^admin/',admin.site.root), > ) > > see more here: http://code.djangoproject.com/ticket/10050 > Indeed, since the

Re: admin problems with the docu

2009-08-13 Thread Alexandru-Emil Lupu
HI! the doc is updated for the 1.1 version .. try this urlpatterns = patterns('', (r'^admin/',admin.site.root), ) see more here: http://code.djangoproject.com/ticket/10050 Alecs On Thu, Aug 13, 2009 at 3:52 PM, quant wrote: > > hi > > i am pretty

admin problems with the docu

2009-08-13 Thread quant
hi i am pretty new to django and i started to check the docu out to see how it works and i had a problem to get the admin interface working... i followed all the steps from the doco and if i set the options in the urls.py on i got many errors ans nothing work anymore i set the following in the

Re: Admin problems :(

2008-08-24 Thread Karen Tracey
On Sun, Aug 24, 2008 at 11:33 AM, Shadow <[EMAIL PROTECTED]>wrote: > > But I'm not sure why the "Change password" link still isn't working. > I'm not sure it's associated with the models? > > http://dpaste.com/73515/ > That's a bug in Django. I've opened a ticket with a patch to get it fixed:

Re: Admin problems :(

2008-08-24 Thread Shadow
sorry, that was a "ah... (dam, silly me)" not a "ah... (Erik is strange :s)" ;) So I've managed to get it to work now :D But I'm not sure why the "Change password" link still isn't working. I'm not sure it's associated with the models? http://dpaste.com/73515/ Cheers On Aug 25, 1:17 am,

Re: Admin problems :(

2008-08-24 Thread Steve Potter
What Erik is saying is that in recent versions of Django you no longer use the same syntax to activate the admin. This happened when the newforms-admin branch was merged. Steve On Aug 24, 10:13 am, Shadow <[EMAIL PROTECTED]> wrote: > ah... :P thanks > > But what about the "Change password"

Re: Admin problems :(

2008-08-24 Thread Shadow
ah... :P thanks But what about the "Change password" link? Not that it really matters... but wondering if its another thing I'm doing wrong? cheers On Aug 25, 12:53 am, Erik Allik <[EMAIL PROTECTED]> wrote: > You should consult the documentation (not djangobook.com) about how   > the admin

Re: Admin problems :(

2008-08-24 Thread Erik Allik
You should consult the documentation (not djangobook.com) about how the admin site should be set up. Erik On 24.08.2008, at 17:20, Shadow wrote: > > Hi, I'm having some issues with the admin app (using svn rev #8520). > > 1) I can't get my apps models to show (logged in as superuser). > >

Admin problems :(

2008-08-24 Thread Shadow
Hi, I'm having some issues with the admin app (using svn rev #8520). 1) I can't get my apps models to show (logged in as superuser). I've added: " class Admin: pass " to each one with no affect. But I can still see them in user permissions?! 2) The "Change password" link gives the

Re: Admin problems now via apache2/mod-python

2007-08-22 Thread jwitherspoon
Umm, nevermind. Forgot I had a vestigial "mysite" leftover in my root directory, from before I realized Django didn't like those files kept in root (duh), & was making the changes there. Deleted that folder, so hopefully it'll be a while b4 I bug you guys w/any further stupid question! On Aug

Admin problems now via apache2/mod-python

2007-08-22 Thread Jason Witherspoon
Well, upwards & onwards. In the interest of forward momentum, I managed to solve my css problem simply be copying the media folder into my htdocs folder, & then setting: SetHandler None ...in httpd.conf so that folder gets statically served (thanks to Chpt. 21 of the Python book

Re: Admin problems when object is created by a view

2006-11-03 Thread Russell Keith-Magee
On 11/4/06, iain duncan <[EMAIL PROTECTED]> wrote: > > If I create a new instance of a database object from a view, this item > appears fine in the database and even in the changelist view of the > admin, but clicking on the item ( as if going to delete or edit it ) > just gets a template error.

Admin problems when object is created by a view

2006-11-03 Thread iain duncan
If I create a new instance of a database object from a view, this item appears fine in the database and even in the changelist view of the admin, but clicking on the item ( as if going to delete or edit it ) just gets a template error. Anyone know why this is? Ie in the the view method we have

Re: Many2Many to same table w. intermediary table - admin problems

2006-08-24 Thread Mathias Picker
Ruben, I think this is the same as http://code.djangoproject.com/ticket/1939 It seems to be somewhat involved in the dirty areas of admin. I have for now stopped thinking about it... / Mathias Am Donnerstag, den 24.08.2006, 07:42 -0700 schrieb Ruben: > Today I run into the same problem. >

Re: Many2Many to same table w. intermediary table - admin problems

2006-08-24 Thread Ruben
Today I run into the same problem. --- It's not necessarily your "to_party" attribute that is missing. I could vary the problem by using a Meta class with a unique_together option, and additionally, moving the "edit_inline" to my second ForeignKey: class MyIntermediate(models.Model):

Many2Many to same table w. intermediary table - admin problems

2006-08-04 Thread mathiasp
Can admin edit_inline a many2many relation to the same table via an intermediary? How? Example: party <- relation -> party, editing party & using edit_inlne for relation, django 0.95 admin bombs. Details: Using this abridged model: - from django.db import models class