The Django url dispatch system
0
votes
1answer
23 views
django admin - overriding changelist_view for single entry models
I have a model for which i'll have one single instance, so i need to override the changelist_view to by-pass it (only if i have at least one record saved), and jump directly to change_view. i found ...
0
votes
1answer
28 views
Django reverse URL issue
I'm having issues getting the following code (below) to work (there are no errors) . In my template I'm outputting item.get_settings_url but I get nothing. What I'm I doing wrong here?
In my models ...
0
votes
1answer
14 views
Django Url Parameters Wont Function Correctly
I am having trouble trying to get url text into one of my views.
Url Conf
urlpatterns = patterns('',
(r'^quizaddquestion/$', 'quiz.views.quizaddquestion'),
...
1
vote
2answers
31 views
Django nested URLs
How do I nest url calls in django? For example, if I have two models defined as
class Post(models.Model):
title = models.CharField(max_length=50)
body = models.TextField()
created = ...
0
votes
1answer
22 views
Can't get django urls to work
I've got a simple django setup in which I have one app called 'lists'. I now want http://127.0.0.1:8000/lists to show this app. So I changed my main urls.py to the following:
from django.conf.urls ...
3
votes
1answer
26 views
processing urls with hashes like jsbin
jsbin, on browsers which do not support (window.history && window.history.pushState) modify the url via window.location.hash = data.edit; (details here).
This creates urls like this
...
0
votes
2answers
16 views
require minimum length of a variable in a django url
This bit from my urls.py requires a nine character value...
(r'^launch/(?P<app_id>[0-9A-Za-z]{9})/*', 'mysite.views.launch_app'),
How do I change this so it requires a minimum nine character ...
0
votes
1answer
20 views
Resolving reverse urls in django
Consider the following django site structure:
root/
- manage.py
- main/
-- __init__.py
-- settings.py
-- urls.py
- phase1/
-- __init__.py
-- urls.py
-- phase1/content/
--- __init__.py
--- models.py
...
0
votes
0answers
36 views
Django redirect pass in variable fails with url reverse match
I'm trying to redirect to a view with parameter, but I'm getting NoReverseMatch error:
Reverse for 'redirected_view' with arguments '(<some object>,)' and keyword arguments '{}' not found.
...
0
votes
1answer
27 views
Dealing with different contenttype objects doesn't works
I'm trying to make a Like button which is depending on many models(ForeignKey on 5 different models). In order to not have urls with 5 parameters, I try to find out a way to deal with it : I've tried ...
0
votes
1answer
22 views
django url NoReverseMatch works in 3rd party app but not my project
I am integrating django-zinnia 0.12.3 into my django 1.4 project. I have it installed and working. I want to override its zinnia/base.html template so that all the content appears using my site's ...
1
vote
2answers
26 views
Django url dispatcher and implicit namespace resolution
I'm using django 1.4 on a project, and I want to use a template across the views of many apps. My urls.py looks like
urlpatterns = patterns('',
url(r'^canvas/', include('canvas.urls', ...
0
votes
1answer
22 views
Separation of Django view and template
For example, I have 2 pages listing news, one for desktop, one for mobile, the urls are 'news/list' and 'news/mobile/list'. Assume the logic of getting news from model is same.
Currently, I work in ...
0
votes
1answer
35 views
Django URL Translation - Stay on the same page when changing language
I developped a Django app with i18n for urls as well.
That look really nice but when changing the language I would like to stay on the same/previous page.
What is the best way of doing that ?
...
0
votes
2answers
31 views
Django Urls regex to suport old php pages
I'm migrating a system from PHP to Python/Django.
From the old website I shuld keep the most visited urls for a while, but I'm trying and I did'nt find a way.
The old format is:
...
-1
votes
2answers
50 views
Problems with django template and views
Hello everyone thanks in advance on the aid, I'm new in programming in general.
I would like to create a link in the voice actor (in Film.html) and using the ID to open a new page (Attore.html) where ...
0
votes
1answer
17 views
Django-simple-friends friendship_accept
I'm working with Django-simple-friends and making progress but I'm stuck on "accepting" a request.
What keywords (if any) do I send in the url to accept the request. Do I send just the "from_user" ...
0
votes
1answer
38 views
NameError at / name 'blog' is not defined
I'm using Django 1.5.1. I'm trying to figure this name error out, even though I've include from . import views in my main urls.py
the code is here http://dpaste.org/ooPOU/
0
votes
1answer
32 views
django weird url reaction
i am having this weird url reaction.
this is my views.py
def user_edit(request):
user = User.objects.get(id=request.GET.get('userid'))
return ...
0
votes
1answer
30 views
Django URL for 40 characters, Alphanumeric
I have try following URL:
url(r'^complete/(?P<id>\d+)/$', 'order_complete', name='checkout_complete'),
The ID I'm passing looks like this bupkrqpltfeqpctnnagjprzegq, which could be Max 40 ...
1
vote
1answer
59 views
Performing a sed -i on a list of files in stdin
So I recently upgraded Django from 1.4 to 1.5. I found out I need to update all my template codes to add single quotes like from
{% url user_detail pk=user.pk %}
to
{% url 'user_detail' pk=user.pk ...
0
votes
1answer
34 views
How to pass DetailView over the 'slug' in url?
How to pass DetailView over the 'slug' in url?
First, let's look at my code.
urls.py
from django.conf.urls import patterns, include, url
urlpatterns = patterns('',
...
0
votes
1answer
46 views
Is it OK to reuse Django URL patterns. If so, how?
I have an URL and a class based view hierarchy that needs to do exactly the same thing, but for various reasons they need to have separate dispatch() methods in one of the superclasses.
I.e a common ...
-1
votes
3answers
44 views
How to have same CBV class hierarchy in two URL prefixes with separate superclass dispatch() methods in Django
I have a (CBV) superclasses (inheriting from Django's View and a mixin) and multiple subclasses for that.
I need to have the exact same functionality implemented in all the subclasses, but the actual ...
0
votes
1answer
42 views
Django - include app urls
I have the following structure (Django 1.4):
containing_dir/
myproject/
myapp1/
myapp2/
myapp3/
myproject, myapp1, myapp2, and myapp3 all have init.py, so they're all ...
1
vote
2answers
62 views
Best way to redirect url with extra trailing slashes in Django?
What is the best way to redirect a url like "mywebsite.com///" to "mywebsite.com/" in django?
Is there a setting that I can use in the settings.py file that is kind of the opposite of APPEND-SLASH ...
0
votes
1answer
19 views
Url rewrite for django ajax site in dev server
I'm developing an Ajax site where routing is controlled with JavaScript.
I want every request to be sent to the IndexView except those declared in the urls.py file.
Here is my urls.py configuration:
...
0
votes
2answers
36 views
Django: Managing urls like id:slug with duplicated slug
Using Django 1.5 I am storing the slug in DB
I configured my urls like follows:
url(r'^(?P<id>[0-9]+):(?P<slug>[-\w]+)$', TracksDetailView.as_view(), name="track-view"),
And in my ...
0
votes
1answer
98 views
Adding extra filter to polls urls.py causes tests to fail
Following the tutorial at djangoproject, I have tried to have urls.py filter out the polls with no choices with the urlpattern below.
urlpatterns = patterns('',
url(r'^$',
...
2
votes
1answer
44 views
Django: How do I pass request URLs through urls.py?
I have a django app with the following entries related to logging out in urls.py:
(r'^logout/$', 'django.contrib.auth.views.logout', {'next_page':'/logout_page/'}),
(r'^logout_page/$', ...
1
vote
1answer
71 views
What is the common practice for white labeling a Django site?
I have a web application that I would like to allow white labeling for our clients. I have done this in PHP/ZendFramework, keying off the hostname(http://example.com), pulling the logo/colors/other ...
3
votes
1answer
322 views
Django 1.5.1 'ImportError: No module named urls' when running tests
I've started project with Django 1.5 I've the following urls, views, and tests of the profile app.
When I browse localhost:8000/profiles it works just fine
but when I run test for profile app ...
0
votes
1answer
39 views
django - configure urls.py regex to process an urlopen post
I am a total newbie to Python and Django and am playing around with passing data, via http post, to a simple web app. I went through the Django tutorial and have a decent understanding of what was ...
0
votes
1answer
24 views
Apply a never_cache to a flatpage view
I want to create a home view that is the same as a home view but does not cache it.
urlpatterns += patterns('django.contrib.flatpages.views',
url(r'^$', 'flatpage', {'url': '/'}, name='home'),
)
...
1
vote
1answer
38 views
More trailing slashes being added at every refresh - Django
I'm using django 1.3.1 and in my application and I have set DEBUG = False in my settings.py. when I refresh the page, the url is going into some loop process and in every loop a slash is being ...
1
vote
1answer
56 views
How to make reverse_lazy() lazy for arguments too?
Introduction
For a particular need (django-jqgrid), I define a class (representing a Grid) where I have to provide an url attribute. Since I use only reversed URLs (nothing statically defined), I use ...
0
votes
1answer
49 views
Django class-based “method_splitter” - passing 2 slugs as model name and field value, respectively
I want to create a "method_splitter" equivalent using class-based views in order to remove some hard-coding in my URL confs.
I would like to have the following URL's:
ListView: ...
0
votes
1answer
52 views
how to get more information from website exploit error messages
I've been getting many of these error emails from my django site. They look like they are triggered from some automated exploit. Here is one example.
Referrer: ...
0
votes
2answers
39 views
test that an URL is matching the correct view
for these two django url patterns
(r'^articles/(\d{4})/$', 'news.views.year_archive'),
(r'^articles/2003/$', 'news.views.special_case_2003'),
the special_case_2003 view will never be called because ...
1
vote
2answers
50 views
How should i design urls for several consective views redirecting to each other?
I have four views redirecting from one to another and here is what am doing but the urls are not working out.
def show_item(request,id):
a = Item.objects.get(pk=id)
form = ...
0
votes
1answer
45 views
Django 'str' object is not callable on form submission [duplicate]
Trying to perform an ajax request for a form submission, but keep getting the above error.
My urls.py
urlpatterns += patterns('',
url(r'^register-me/$', 'registerMe', name='registerMe'),
)
My ...
1
vote
1answer
47 views
How do i deal with an attribute error?
I have these three functions,i have arranged them in such away that they
def show_order(request,id):
order = Order.objects.get(pk=id)
if request.method == 'POST':
postdata = ...
0
votes
3answers
27 views
How do i deal with a NoReverseMatch?
i have a function,
def show_checkout(request,id):
if order.is_empty(request):
cart_url = urlresolvers.reverse('order_index')
return HttpResponseRedirect(cart_url)
if ...
1
vote
4answers
99 views
How to use current logged in user as PK for Django DetailView?
When defining URL patterns, I am supposed to use a regular expression to acquire a PK from the URL.
What if I want a URL that has no PK, and if it's not provided, it will use the currently logged in ...
0
votes
1answer
90 views
Using Django urls in javascript files
I am trying to use url-names in my javascript/jquery files for AJAX requests and I have found several solutions that can solve this problem. The one that I am currently using is the following.
I ...
0
votes
1answer
164 views
Django: no reverse url match with multiple parameters
My URLs need to capture the following:
domain/forum-name/
domain/forum-name/topic-name
I have the following URL definitions:
url(r'^$', views.index_forums, name='index_forums'),
...
0
votes
0answers
52 views
Django - Manipulating query strings (search filters)
I'm looking to manipulate query strings so I can create search filters -- I was wondering what would be the best approach. I'd like to be able to add/update/remove parts. For example:
Color
Blue ...
0
votes
0answers
44 views
django absolute path reference in views.py
I want to get absolute path reference (a URL without the domain name).
If my project/project/urs.py contains:
url(r'', include('my_app.urls', namespace='my_app')),
And my project/my_app/urls.py ...
4
votes
2answers
157 views
Django custom admin urls not defined
I am trying to add two URLs to a model admin.
class JobTitleAdmin(admin.ModelAdmin):
inlines = [OccupationTagInline, ]
model = JobTitle
search_fields = ['title',]
list_filter = ...
0
votes
1answer
251 views
Error updating django 1.5 - u "'admin' is not a registered namespace
I am upgrading django from 1.4 to 1.5 in the front and all goes well, but admin side when I try to enter the url I get this particular error, and not how to fix it, any ideas?
error:
NoReverseMatch ...


