The Django url dispatch system
-1
votes
2answers
12 views
Django urls accepting an object or Dictionary
As i am new to django i am not aware of the advanced django url concept.
So i would like to know whether the following are possible or not in django urls.
My first Question is,
In my django ...
2
votes
2answers
20 views
How to make a simple Django URLconf and reverse() on it for a test? (getting TypeError: unhashable type: 'list')
I am writing convenience code which calls django.core.urlresolvers.reverse() to generate links. However, I can't seem to write a simple URLconf for a quick test.
This is what I tried:
>>> ...
0
votes
2answers
19 views
Django home page URL being rendered as a different URL
So, I have a simple home page for a django project I am working on. In the upper left hand corner is the logo for the site. In my template, I have this code:
<a href="{% url "home" %}">Company ...
0
votes
1answer
20 views
How can I add access to use here -1 (instead 0)? Vote negative
url(r'^rate/(?P<id_obj>\d+)/(?P<rate>\d{-1,1})/', 'app.views.add_rate'),
How can I add access to use here -1:
(?P<rate>\d{-1,1})
This is negative Vote(-1) or positive (1)
0
votes
1answer
24 views
django NoReverseMatch error for related object when in a loop
My model: a "Workshop" has a related item that stores time and place in a "Session" object:
item=models.OneToOneField(Session)
a Session stores the location as a foreign key to the locations:
...
0
votes
2answers
28 views
Django url dispatcher - wrong function
i am new to Django and i have some problem with Django URL dispatcher.
I have "prometfire" project and "homepage" app.
My goal is to connect this paths to their view functions:
127.0.0.1:8000 --> ...
0
votes
1answer
17 views
Django: conditional URL patterns?
I'd like to use a different robots.txt file depending on whether my server is production or development.
To do this, I would like to route the request differently in urls.py:
urlpatterns = ...
1
vote
1answer
15 views
json? in Django URL regex
This question might reveal a gaping hole in my knowledge of json queries, but I'm trying to get json data to display on a view with the following URL.
...
0
votes
1answer
26 views
0
votes
1answer
26 views
Django URL Regex for an “Address”
I'm trying to write a url regex in my urls.py for a json query that will take a url like such:
http://localhost:8000/structures/hydrants/3/json?address=100+Washington+Road,+Sacramento,+CA
and ...
1
vote
3answers
45 views
Django — Allowing Users To Only View Their Own Page
I am nearing what I think is the end of development for a Django application I'm building. The key view in this application is a user dashboard to display metrics of some kind. Basically I don't want ...
0
votes
1answer
21 views
django named url not picking variables
I have the following url pattern -
url(r'^detail/(?P<var>[\w]+)/(?P<var_slug>[\w-])/$', 'player_detail', name='player_detail'),
In my view, I have the following -
model_dict = ...
0
votes
1answer
49 views
Django — Only Displaying Objects A User Created
I'm building a Django app with a legacy DB. I have one model, LIST, which is from that legacy DB and cannot really be changed. I am using the standard Django user model as well. Ideally, this is what ...
2
votes
2answers
63 views
URL template optional param
Let's consider this template part
<form class="form-horizontal" action="{% if client_id %}
{% url client_edit client_id=client_id %}{% else %}
{% url client_edit %}
{% endif %}" ...
0
votes
1answer
32 views
Django — Redirecting Views with Parameters
In the Django app I am building I would like to have the user creation process go as follows: As user signs up, if valid is then redirected to create a LIST object, and if valid is then redirected to ...
0
votes
1answer
41 views
Django urls.py Regex Not Working Like I Expected
I want to have a URL like these --
/chart/2012
/chart/2009
/chart/1996
...each #, is a year. So I added this line into my app's urls.py --
...
0
votes
1answer
38 views
Django admin generates static url with /admin/ prefixed
I'm trying to setup a second development environment for my project. I've copied over the settings from the working setup but on the new one the URLs generated by the Django admin are prefixed with ...
1
vote
3answers
53 views
Django URLs: Can't get the keyword arg into my view?
The URL pattern having issues is:
url(r'^$', business_list, name='business_list_home'),
url(r'^(?P<param>\w+)$', business_list, name='business_list_results'),
My view is:
...
1
vote
1answer
15 views
Extend urlpatterns dynamically
I have application app1. It has connected (through INSTALLED_APPS) app2; let's say that app2 is some kind of black-box for me. But I know that app2 in its urls has some number of i18n_patterns.
I need ...
0
votes
2answers
48 views
Custom Django workflow
I'm a newbie in Django and have written the login/registration procedures.
Currently, on clicking the submit button to login, I'm navigated to a page www.example.com/login. Similarly, when I try to ...
0
votes
1answer
38 views
Django building the login interface
I'm new to Django and needed some help regarding the login forms. Here's what I've done.
My templates has index.html
<form class="form-signin" action="/login" method="post">
{% csrf_token ...
0
votes
2answers
40 views
a strange bug on template's url tag error
I'm using django 1.4.5.
within my templates, I've included {% load url from future %}, and have followed the standard pattern for referring to urls accordingly.
say, in the `urls.py':
url(
...
0
votes
1answer
26 views
Django links on base template
Django 1.5.1
Experience, getting started
I'm currently working on my static side of the site.
And creating the HTML/CSS/JS stuff. In the base html i have some links.
One of them is "about" that ...
0
votes
1answer
17 views
Django Url Include Same App different Roots
can i include the same app url conf within two different root?
I mean, i have this
(r'^event/', include('quip.apps.event.urls')),
but i would like to have that
(r'^event/', ...
0
votes
1answer
52 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
48 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
18 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
45 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
31 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
30 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
...
1
vote
2answers
28 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
24 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
1answer
32 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
32 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
36 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
23 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
60 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
35 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
59 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
42 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
43 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 ...
2
votes
1answer
79 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
54 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
49 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
46 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
59 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
105 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
26 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:
...

