The Django url dispatch system
0
votes
2answers
272 views
NoReverseMatch at / after upgrade from 1.3 to 1.4
The project was working fine with Django 1.3, once I updated to 1.4 results on this error:
NoReverseMatch at /
Reverse for 'app_list' with arguments '()' and keyword arguments '{'app_label': ''}' not ...
0
votes
1answer
102 views
Django send filepath to views.py
In django urls how to send a file path and access the same from the view.I have tried the following below but i get an error,whats wrong with this code.
javascript
...
3
votes
2answers
357 views
Heroku raising 500 instead of 404 with Django app
I have designed my app's URLS to match all the criteria and find it works perfectly on my local machine with DEBUG=FALSE however when deployed to Heroku I seem to have a problem where all urls that ...
2
votes
1answer
1k views
'Manager' object is not callable
I keep getting this error on my views. I can't work it out as the code is similar to the djangos tutorial just changing the objects name. Here is the code for my views.py:
from django.http import ...
1
vote
1answer
503 views
Django URL didn't match any of URL config
The errors message is:
Using the URLconf defined in Blog.urls,
Django tried these URL patterns, in this order:
^admin/doc/
^admin/
^post/ ^post/(?P<post_id>\d+)/$
The current URL, post/1458/, ...
0
votes
1answer
166 views
Django urls having N number of optional parameters
I want to have same url pattern as khanacademy.org have in its videos. Suppose I opened a video having title "The Beauty of Algebra" its url will be ...
0
votes
1answer
72 views
weird url pattern through a form submission in django
I have a form on a page:
<form id="create_event" method="post" action="{% url app.views.create_event course.id %}" >
{% csrf_token %}
{{ eventForm.as_p }}
<input ...
0
votes
1answer
166 views
How to fix error “invalid literal for int() with base 10: 'goelv' ” when trying to capture string
I have the following urls.py
urlpatterns = patterns('accounts.views',
url(r'^user/(?P<id>\w+)/$', 'profile'),
)
I have the following views.py
def profile(request, id):
user = ...
0
votes
1answer
351 views
django adding base url part
I am working on a blog project. Now when I load 127.0.0.1 ; I see my main page which lists the all created posts. When I click one of those posts it is redirecting a single page. That page's url like ...
1
vote
2answers
131 views
django slugfield url error
i get :
Using the URLconf defined in blog.urls, Django tried these URL patterns, in this order:
^ ^$
^ ^/(?P[a-zA-Z0-9]+) [name='view_blog_post']
The current URL, duzeltme-yazisi/, didn't ...
10
votes
2answers
2k views
How do I redirect in Django with context?
I have a view that validates and saves a form. After the form is saved, I'd like redirect back to a list_object view with a success message "form for customer xyz was successfully updated..."
...
1
vote
1answer
115 views
Parenthesis URL dispatcher Django?
I have a parenthesis in my url :
Ex: http://en.wikipedia.org/wiki/Sacramentum_(oath)
Where The URL has parenthesis.
Django give """Page not found (404)"""
Any idea how to solve this problem ????
-1
votes
1answer
108 views
Find an object based on its absolute_url given a urlconf
I have the following get_absolute_url defined in my model.py:
class Product(models.Model):
def get_absolute_url(self):
return "/products/category/type/%d%s%d" % (self.owner.id,
...
1
vote
1answer
277 views
Voting with django voting
I'm having trouble registering a vote with registering a vote with django-voting: https://github.com/brosner/django-voting
I'm trying to technically upvote a comment object. Thus adding to it's ...
1
vote
2answers
832 views
Django: Syntax error in urls.py
from django.conf.urls import patterns, include, url
from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns('',
(r'^admin/', include(admin.site.urls)),
(r'^events/', ...
0
votes
1answer
60 views
Wrong url regex keeps django busy
I have urls where spaces are replaced with the "-" character.
So I made a url regex like this:
url(r'^(?P<item_url>(\w+-?)*)/$', 'detail'),
my view:
def detail(request, item_url):
i = ...
0
votes
1answer
340 views
regex in Django urls.py
Help me please to fix urls.py
People suggested this way, but it does't work for me.....
#urls.py
(r'^/user/(?P<username>)/subject/([\w|\W]+)/$', subject),
#template
{% for subject in ...
0
votes
1answer
60 views
Getting user defined urls in django
I would like to add to my app a way for users to create their own url. So, what I mean by this, is that if a user wants to go to their webpage, they could go to http://www.projectdomain.com/JimmyJohn
...
1
vote
2answers
267 views
Django: Multiple url patterns starting at the root spread across files
I am wondering if it is possible to have the standard url patterns spread across multiple files (in this case the project-wide urls.py and several apps-specific urls.py).
Imagine that the project ...
0
votes
1answer
178 views
Django on a subdomain
I am trying to get django to work on a subdomain. It can render the main page (r^$ in the urls.py file) just fine, nut the rest of the pages I get 404 errors. And not the typical 404 errors. These ...
0
votes
1answer
113 views
URL naming not working in template
When I go to /blog/tag/1 to see the first existing tag item, which renders response to tag.html, I get an exception: "Caught NoReverseMatch while rendering: Reverse for ''add-node'' with arguments ...
2
votes
2answers
343 views
Django - go to #id tag inside HTML
From views.py, is there any way to make it go to an id tag inside HTML?
For example,
my html:
<body>
<div id="lotofstuff"> content </div>
<div id="pictures"> ...
0
votes
3answers
272 views
403 message on json request in django
I am running django server and when I do a post I get a 403 message. My question is that to make a json call as shown below should I be running apache? Or else, what am I doing wrong?
In the html ...
1
vote
1answer
337 views
Object matching query does not exist
i have a problem:
DoesNotExist at /products//
Product matching query does not exist.
Request Method: GET
Django Version: 1.4
Exception Type: DoesNotExist
Exception Value:
Product matching query ...
0
votes
1answer
247 views
django url config passing multiple variables to views
i am trying to pass multiple variable to a view via the url as bellow
url(r'stage/1/(?P<op>\w+)/(?P<id>\d+)$', 'HR.hr.views.stage_one_manage', name='view_stage_manage'),
the view is as ...
0
votes
3answers
147 views
Automatic url alias creation for posts
I want to be able to convert the title of blog posts to auto-generated URLs in django like this:
title: This is Article #1 => blog/article-1
title: Cooking spaghetti and meatballs => ...
1
vote
3answers
60 views
URL output in template is empty
URL pattern declaration from views.py
url(r'^intentions/(\d+)/$', 'intentions.views.show'),
When I am writing address directly, like intentions/1 works ok, but when I trying to display URL show for ...
0
votes
3answers
477 views
How do I rewrite this URL in Django?
I have a Django based website. I would like to redirect URLs with the pattern servertest in them to the same URL except servertest should be replaced by server-test.
So for example the following URLs ...
0
votes
1answer
139 views
deploy static files with Django modpython
I have always wondered how static files are found by server when using Django. Recently I deployed my Django app to a server and I had trouble deploying static files. I always get the error as ...
3
votes
3answers
645 views
Django HttpResponseRedirect with int parameter
I want to pass an int parameter (user_id) from a login view to another view. Is that possible within an HttpResponseRedirect? I try something like this:
return ...
3
votes
3answers
149 views
How pass two parameters to url (without GET)?
A while back I was given the advice to not use the GET approach in my urls when using Django as it's cleaner this way.
That works pretty nice with one parameter:
...
0
votes
1answer
61 views
Django - Internationalized URL part different per language
I need to make an urlpattern different for each language, but following to the same view.
for example:
url(r'^category/(?P<slug>[\w-]+)/, 'news.views.category', name='category'), in english
...
1
vote
2answers
84 views
Django admin access not granted
I am trying to run /admin for the project that i am creating.i am facing two problems here
1.when i point my browser to 127.0.0.1/admin/ it says page not found but when i point the browser to ...
1
vote
1answer
291 views
django root url not working
When you go to my site austinhum.webfactional.com it goes to the admin console with the message of "You don't have permission to edit anything." I should mention that my base template is the base ...
4
votes
1answer
3k views
“Reverse for '' with arguments '()' and keyword arguments '{}' not found. ”
I applied the fixes in the stackoverflow link
<a href="{% url shop_index %}"><span>{% trans "Shop List" %}</span></a>
in urls.py
url(r'^shop/$', 'index', ...
1
vote
1answer
49 views
error in implementing static files in django
my settings.py file:-
STATIC_ROOT = '/home/pooja/Desktop/static/'
# URL prefix for static files.
STATIC_URL = '/static/'
# Additional locations of static files
STATICFILES_DIRS = (
...
0
votes
2answers
253 views
How can we pass dictionary object in djnago url?
I am new to django framework so i would like to know how can we pass dictionary object as parameter to django url and how how i retrive this as dictionary object in my view...Please help me.
0
votes
1answer
345 views
how to make interaction between different django apps in a single site?
I have just learnt about Django apps. I want to know that within one site, if I make different apps. like, users, profiles, polls, blogs,comments, jobs , applications then how can I manage them to ...
1
vote
1answer
69 views
How to create a WordPress like URL naming convention in Django?
I'm a newbie in Django and in WordPress if you create a Post called "hello world" then the URL by default will be like
wordpress.com/2012/07/05/hello-world/
and if you create another post with ...
0
votes
1answer
99 views
queries related to views.py file in django cms
This is my views.py file code(which is present in my app 'search' in django):
#!/usr/bin/python
from dango.http import HttpResponse
from skey import find_root_tags, count, sorting_list
from ...
0
votes
2answers
398 views
New URL on django admin independent of the apps
I am using django 1.4 and Python 2.7.
I just have a simple requirement where I have to add a new URL to the django admin app. I know how to add URLs which are for the custom apps but am unable figure ...
1
vote
4answers
113 views
ValueError when getting objects by id
I'm trying to get data by id in my django app. The problem is that I don't know the kind of id the user will click on. I input the below codes in views.
Views
def cribdetail(request, meekme_id):
...
0
votes
1answer
202 views
RedirectMatch 301 in urls.py for Django
Since Django does not do .htaccess (at least on my host), I need to do a 301 RedirectMatch in the similar manner that you'd do an .htaccess RedirectMatch:
RedirectMatch 301 ^/oldfolder/(.*)$ ...
1
vote
2answers
384 views
Getting Objects by id in Django
I'm trying to get data by id in my django app. The problem is that I don't know the kind of id the user will click on. I tried adding the below code in my views but I'm getting this error:
...
2
votes
1answer
153 views
Pass a captured named regular expression to URL dictionary in generic view
I am working with a generic view in Django. I want to capture a named group parameter in the URL and pass the value to the URL pattern dictionary. For example, in the URLConf below, I want to ...
1
vote
3answers
147 views
Passing a serialized object through a URL
I am serializing/pickling an object, encoding it as a compressed string, and passing it as a parameter in the URL for the next page to deserialize. My web app does not have a database; I am doing this ...
0
votes
1answer
434 views
Django: relative url not working with post calls in ajax
I am trying to use relative url with a post ajax call as follows:
Current url path:
http://localhost:8000/customer/0/location/0/user/0/
I need to change to different directoy.
var absolute = ...
0
votes
2answers
707 views
Choose the start page django-cms
The django-cms always uses the top-most page as the start/landing page. I now want to have a navigation that looks like this foo-home-bar and home to be the landing page.
One way would be to add a ...
1
vote
1answer
291 views
Django. How to redirect to url with fragment identifier
For example in some cases after POST or GET request I want to redirect user not only to specific page, but to a specific part of page. What would be better: implement this in Django(reconstruct ...
1
vote
4answers
494 views
Why does Django throw a warning when loading my URLconf?
I have a Django app running on a production server. It is handled with gunicorn 0.14.2 behind nginx. When I reload the app (by reloading the gunicorn workers), I get this error:
Traceback (most ...
