Resolved, if I could say so :)
the problem was that I can't use reverse in forms.py 'cause is to
early for doing that :(
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, se
Almost resolved :)
I tried everything to find the error and finally I did, but I don't
know how to resolve :(
the error is casued by this line in a imported script:
CITY_URL = reverse('get_city_list')
if I remove that line the project works fine, but I need that line :(
Ps. the url get_city_l
This is really boring :(
I've restarted the server, and it doens't work again :/
also I've noticed that no urls in reparations.urls can't be called
with the template tag url...
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
What a strangeness!
I edit the template removing the extend tag, and it worked, next I
readded the extend and it still worked :O
this is really strange :/
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users
On 22 Dic, 09:24, Malcolm Tredinnick wrote:
> Okay, nothing unexpected there. If I use the same lines with a dummy
> view file, things certainly seem to work.
>
> The confusing thing here is that the url template tag is a relatively
> simple wrapper around reverse(), so there aren't many places f
On Sun, 2008-12-21 at 23:58 -0800, patrick91 wrote:
> On 22 Dic, 02:17, Malcolm Tredinnick wrote:
> > Certainly a bit unexpected. Can you paste the relevant lines from your
> > URL Conf file, please?
> >
> > Regards,
> > Malcolm
>
> Sure :)
> here it is:
> url(r'foglio/(?P[0-9]+)/$', views.show_
On 22 Dic, 02:17, Malcolm Tredinnick wrote:
> Certainly a bit unexpected. Can you paste the relevant lines from your
> URL Conf file, please?
>
> Regards,
> Malcolm
Sure :)
here it is:
url(r'foglio/(?P[0-9]+)/$', views.show_worksheet,
name='show_worksheet'),
Thanks for the reply
--~--~-
On Sun, 2008-12-21 at 11:45 -0800, patrick91 wrote:
> Hi, I've a problem with the url tag, when I call this template:
> Visualizza
> I get this error:
> Caught an exception while rendering: Reverse for
> 'catsnc.show_worksheet' with arguments '(5537,)' and keyword arguments
> '{}' not found.
>
>
Hi, I've a problem with the url tag, when I call this template:
Visualizza
I get this error:
Caught an exception while rendering: Reverse for
'catsnc.show_worksheet' with arguments '(5537,)' and keyword arguments
'{}' not found.
But when I call this code from the shell:
>>> from django.core.urlre
Brian Neal wrote:
>
>
> On Sep 19, 12:45 pm, Steve Holden <[EMAIL PROTECTED]> wrote:
>> That's annoying: now *I* have a (named) pattern that won't reverse with
>> the URL tag: specifically, the edit profile URL from the Google code
>> profiles app:
>>
>>url(r'^edit/$',
>>
On Sep 19, 12:45 pm, Steve Holden <[EMAIL PROTECTED]> wrote:
> That's annoying: now *I* have a (named) pattern that won't reverse with
> the URL tag: specifically, the edit profile URL from the Google code
> profiles app:
>
> url(r'^edit/$',
> vi
Brian Neal wrote:
>
> On Sep 16, 4:09 pm, Steve Holden <[EMAIL PROTECTED]> wrote:
>
>> Brian Neal wrote:
>>
>>> I might have found my answer. I was looking at the list of
>>> incompatible changes and found this:
>>>
>>> http://code.djangoproject.com/changeset/8760
>>>
>>> Whi
On Mon, 2008-09-15 at 20:44 -0700, Ross wrote:
> Check out the description of the {% url %} tag in the Django
> documentation:
>
> http://docs.djangoproject.com/en/dev/ref/templates/builtins/#url
>
> It does not expect the project name to be in the URL. Try dropping
> "gpp" and just use "weblin
On Sep 16, 4:09 pm, Steve Holden <[EMAIL PROTECTED]> wrote:
> Brian Neal wrote:
> > I might have found my answer. I was looking at the list of
> > incompatible changes and found this:
>
> >http://code.djangoproject.com/changeset/8760
>
> > Which led me to this:
>
> >http://docs.djangoproject.com
Brian Neal wrote:
> I might have found my answer. I was looking at the list of
> incompatible changes and found this:
>
> http://code.djangoproject.com/changeset/8760
>
> Which led me to this:
>
> http://docs.djangoproject.com/en/dev/topics/http/urls/#reverse
>
> I quote from the docs:
>
> "The re
I might have found my answer. I was looking at the list of
incompatible changes and found this:
http://code.djangoproject.com/changeset/8760
Which led me to this:
http://docs.djangoproject.com/en/dev/topics/http/urls/#reverse
I quote from the docs:
"The reverse() function can reverse a large
hello,
you could try named url patterns.
> I am also seeing strange things if I change the order of the URLs in
> my URL patterns list.
please define "strange things" :) in general, the order of urls
matters because django starts rverse lookup from the top of the list
and stops at the first mat
On Sep 15, 10:44 pm, Ross <[EMAIL PROTECTED]> wrote:
> Check out the description of the {% url %} tag in the Django
> documentation:
>
> http://docs.djangoproject.com/en/dev/ref/templates/builtins/#url
>
> It does not expect the project name to be in the URL. Try dropping
> "gpp" and just use "web
Check out the description of the {% url %} tag in the Django
documentation:
http://docs.djangoproject.com/en/dev/ref/templates/builtins/#url
It does not expect the project name to be in the URL. Try dropping
"gpp" and just use "weblinks.views.view_links".
On Sep 15, 9:19 pm, Brian Neal <[EMAIL
This is my urls.py for an app (notice the two that start with
^category/, they both vector to my function view_links):
from django.conf.urls.defaults import *
urlpatterns = patterns('gpp.weblinks.views',
(r'^$', 'link_index'),
(r'^add/$', 'add_link'),
(r'^category/(?P\d+)/$', 'view_link
20 matches
Mail list logo