Re: When I set DEBUG=False, my 404.html doesn't appear

2012-12-31 Thread carlos
you need read this https://docs.djangoproject.com/en/dev/topics/http/views/#the-404-page-not-found-view Cheers On Sat, Dec 29, 2012 at 12:43 PM, nimesh ghelani wrote: > Can you post the shell output when 404 occurs along with the TEMPLATE_DIRS > part of settings.py? >

Re: alternate way for nested inline in django admin

2012-12-31 Thread carlos
it no posible nested inline in django !! On Sat, Dec 29, 2012 at 10:36 AM, Nikhil Verma wrote: > Hi All > > Can somebody explain me the workaround for this ticket 9025. I want to > nested inlines in my django admin > explained below. > > Thanks in advance > > On Fri,

Re: Happy new year

2012-12-31 Thread yati sagade
Thanks all :) Here's India wishing a very happy, healthy and prosperous new year to all Djangonauts around the world :) On Tue, Jan 1, 2013 at 10:43 AM, JOSE LUIS FABREGA wrote: > Feliz año nuevo, desde venezuela > > ¡Le deseamos lo mejor ! > > -- > You received this

Re: Creating a project error

2012-12-31 Thread Mike Dewhirst
On 1/01/2013 4:06pm, shaggy0n wrote: Hi i'm totally newby django user. When i trydjango-admin.py startproject mysite command i've got this error: . ...lib/python3.1/site-packages/django/utils/functional.py", line 349, in If you want to use Python 3.x you want Django 1.5.x and then you

RE: Happy new year

2012-12-31 Thread JOSE LUIS FABREGA
Feliz año nuevo, desde venezuela ¡Le deseamos lo mejor ! -- 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

Creating a project error

2012-12-31 Thread shaggy0n
Hi i'm totally newby django user. When i try django-admin.py startproject mysite command i've got this error: . ...lib/python3.1/site-packages/django/utils/functional.py", line 349, in from functools import total_ordering ImportError: cannot import name total_ordering what should i

Re: Happy new year

2012-12-31 Thread Rodrigo Morgado
Happy New Year to all of you from Santiago, Chile! El 31/12/2012 21:28, "Victor Manuel Quiñones Victor" < quinonesvic...@gmail.com> escribió: > Happy New Year!! Have a good year to all you. > > Cheers > > On Mon, Dec 31, 2012 at 9:10 PM, Raphael wrote: > >> ** >>

Re: Happy new year

2012-12-31 Thread Raphael
Happy New Year from Austria to all of you! You are awesome guys and girls! -- Raphael http://develissimo.com -- 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

Re: Happy new year

2012-12-31 Thread Rodrigo Martins
Happy new year to all of Django users worldwide. -- * Atenciosamente* ___ Rodrigo Martins www.rrmartins.com tel: (28) 9882-6202 (27) 9601-9573 (21) 9942-2016 My profiles: [image: Facebook]

Re: Happy new year

2012-12-31 Thread Nevio Vesic
Happy New Year to all Django group users from Croatia! May 2013 be for you the year of happiness, joy and personal as professional success! On Mon, Dec 31, 2012 at 11:02 PM, Mário Neto wrote: > Happy new year from Brasil to all djangonautics of the world. > Many django

Re: Happy new year

2012-12-31 Thread Mário Neto
Happy new year from Brasil to all djangonautics of the world. Many django projects for all! Best regards. 2012/12/31 Ariel Calzada > Happy new year from Colombia > El 31/12/2012 16:42, escribió: > > Happy new year from spain to all django lovers.

Re: Happy new year

2012-12-31 Thread Ariel Calzada
Happy new year from Colombia El 31/12/2012 16:42, escribió: > Happy new year from spain to all django lovers. > I wish you a new year with tons of django projects. > > Cheers > Cingusoft > BlackBerry de movistar, allí donde estés está tu oficin@ > > -- > You received this

Happy new year

2012-12-31 Thread cingusoft
Happy new year from spain to all django lovers. I wish you a new year with tons of django projects. Cheers Cingusoft BlackBerry de movistar, allí donde estés está tu oficin@ -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this

Re: l10n not loaded from base.html template

2012-12-31 Thread Tomas Neme
each template needs to {% load %} every templatetag library it uses, this is normal behavior On Mon, Dec 31, 2012 at 8:31 AM, bikeridercz wrote: > Dears, > > strange thing happens to me, {% load l10n %} is not loaded in my base.html > template, all other things like css works

django git repository management app

2012-12-31 Thread Sven
Hi Guys, a while ago i was looking for a django app that allows me to manage git repositories like gitosis, gitweb or at least github. But simple and well integrated with django. Finally i found nothing. Then the idea for gitana was born. A git repository management applicaiton for django

django_nose failing to discover tests

2012-12-31 Thread Joe Legner
I am trying to get django_nose to discover tests in my project. I watched this video which seems to indicate that my project/app/tests/__init__.py should be able to be empty (not contain a bunch of import * statements): http://pyvideo.org/video/1406/djangos-nasal-passage The goal is to have

Multiple model inheritance

2012-12-31 Thread Mattias Linnap
Hi all, I would like to define multiple abstract base models with small set of fields each. The "real" models inherit from multiple mixins to add the fields. For example: class Taggable(?): tag = models.CharField() class Visible(?): visible = models.BooleanField() class SomeFullModel(?,

Re: The method all() in overrided models.Manager doesn't works as expected

2012-12-31 Thread akaariai
Interesting approach :) Some pointers: - The Page object has an automatic primary key. You should probably change the path to be the primary key. - .all() should not return a list of objects, instead it should return a QuerySet which returns a list of objects when iterated. You might be

l10n not loaded from base.html template

2012-12-31 Thread bikeridercz
Dears, strange thing happens to me, {% load l10n %} is not loaded in my base.html template, all other things like css works well. Thus I'm forced to {% load l10n %} in every template. I'm using formating numbers usings{% localize on %} and {% endlocalize %} tags. Can You help to solve this

Re: Unable to get an object value using get method in Django

2012-12-31 Thread Babatunde Akinyanmi
Hi coded, You didn't say what the new error is. Anyway, in your view, `name` is not in the namespace. Its just like doing this: Python 2.7.3 (default, Aug 1 2012, 05:16:07) [GCC 4.6.3] on linux2 >>>a = 1 >>>a + a 2 >>>a + b Traceback (most recent call last): File "", line 1, in NameError: