Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
2k views

Django: Arbitrary number of unnamed urls.py parameters

I have a Django model with a large number of fields and 20000+ table rows. To facilitate human readable URLs and the ability to break down the large list into arbitrary sublists, I would like to have ...
5
votes
2answers
3k views

Django and urls.py: How do I HttpResponseRedirect via a named url?

I'm writing a member-based web application, and I need to be able to redirect the page after login. I want to use the named url from my urls.py script in my views.py file for the login application, ...
3
votes
3answers
785 views

How do I set urlpatterns based on domain name or TLD, in Django?

How do I set urlpatterns based on domain name or TLD, in Django? For some links, Amazon shows url in native language based on its website tld. http://www.amazon.de/bücher-buch-literatur/ ( de : ...
2
votes
1answer
120 views

In Django, can you automatically map URLs to view methods?

Given a view like this: # my_app/views.py def index(request): ... def list(request): ... def about(request): ... Instead of explicitly declaring the urls in urls.py for each method in ...
2
votes
2answers
412 views

Catch-all routing using Tipfy

Using tipfy, how does one express a catch-all route in urls.py if more specific routes do not match? Tipfy uses Werkzeug-like routing, so there's this (in urls.py): def get_rules(app): rules = [ ...
2
votes
1answer
196 views

Where to put Python files to be redirected to by urls.py in Django?

Where do I put python files to be redirected to by urls.py in Django? The tutorial showed something like this: urlpatterns = patterns('', (r'^polls/$', 'mysite.polls.views.index'), Where ...
1
vote
1answer
25 views

Django named routes not working with django.views.generic.simple.redirect_to

Having an issue with django's named routes. Django keeps raising the NoReverseMatch error when called as follows: urlpatterns += patterns('django.views.generic.simple', # tutorials ...
1
vote
2answers
101 views

django URL mapping?

Newbie to django and python. Trying to get some example calendar code up and running but having problems with URL mapping. When I try to run the admin page (or any page), I get: ViewDoesNotExist ...
1
vote
1answer
68 views

Django - define template includes/extends in one place in the same way url paths are defined in urls.py?

I'm really enjoying the transition from PHP to Python/Django and the ability to extend templates. However, I'm still finding that I'm still doing a fair bit of repetitive work in defining templates ...
1
vote
0answers
214 views

kerberos HTTP Authentication script on Python

send me examples of python (.py) file for opening URLs via proxy with kerberos HTTP Authentication The Basic HTTP Authentication or NTLM Authentication leads to : The following error was encountered ...
1
vote
1answer
119 views

python - urls.py regex help with coordinates

I tried searching but could not find an answer for this. I am trying to write a function that takes in coordinates, ie latitude and longitude. For example, 53.345633,-6.267014. These will then be ...
1
vote
1answer
4k views

Caught NoReverseMatch while rendering with generic PasswordChangeForm Django view

I'm trying to use the generic PasswordChangeForm and password_change view in Django, and running into a NoReverseMatch error. Here is my urls.py: ...
1
vote
2answers
179 views

With Django, is there a better way to dynamically import views in urls.py?

Summary: Say I have a project in Django called "devsite" which will be deployed first to a staging project (also called "devsite") and finally to the live codebase (where the project is called ...
1
vote
3answers
301 views

Django site with lots of drill down options. How to effectively write the urls.py?

I am making a django site to showcase children's clothing. You start with an overview page where you see a listing with all the clothes. In a side bar you have the following options to refine your ...
0
votes
1answer
50 views

How to get Django urls.py to recognize # (hash) in url?

Let's say I want the following url to get matched with a django view through urls.py: www.mysite.com/cake/#vanilla In urls.py I have something like this: url('^cake/#.*/$', app.views.view ), So ...
0
votes
1answer
34 views

Django NoReverseMatch newbie

I am trying to create a reply page for a forum thread. The forum views and the thread views work fine but I am having trouble setting up the reply and start new thread pages. Have managed to create a ...
0
votes
1answer
82 views

Django urls.py template issue

I am new to Django and just playing around with the code and features but I seem to be stuck (yes I have done the entire tutorial). For some reason my mysite/urls.py is not taking me to the right ...
0
votes
2answers
85 views

How do I fix my Django app's urls.py so I stop getting a TemplateDoesNotExist exception?

I am currently following along with a somewhat questionable Django tutorial called A complete blog engine using Django in 60 minutes and am stuck on page 6. So I have a Django project called blog and ...
0
votes
0answers
14 views

Django On IIS 6.0 WIth PyISAPie Only Handles HomePage Url

excuse me for my bad english i have run my django website by using this article : https://code.djangoproject.com/wiki/DjangoOnWindowsWithIISAndSQLServer when i access my website onyl homepage with ...
0
votes
2answers
65 views

Questions about Django urls.py

Basically, I'm writing blog software using Django/Python. Currently I have the following files urls.py: from django.conf.urls.defaults import * from django.contrib import admin ...
0
votes
1answer
36 views

Django urls.py not found

Setting up the urls for a Django app called OmniCloud_App. Getting and error when accessing /OmniCloud_App/signup that the url is not found. here is the main urls.py: urlpatterns = patterns('', ...
0
votes
1answer
68 views

Help with capturing URL fragment in Django

I am working on a django project, and trying to match URLs in the following form: /cards/series/SERIES NAME/ where I am trying to capture SERIES NAME My base urls.py includes: (r'^cards/', ...
0
votes
2answers
120 views

Django isn't including the urls.py from an installed app

I am getting the error below: Caught NoReverseMatch while rendering: Reverse for 'satchless-checkout-prepare-order' with arguments '()' and keyword arguments '{}' not found. But I have ...
0
votes
1answer
100 views

Use first param in django URL

Howdy! I want to to know if its possible to use the first "segment" of a Django URL as a parameter and what would that regex look like. example: (r'^blog/', include('blog.urls')), url(r'^admin/', ...
0
votes
1answer
126 views

date_based object_detail giving 404 in django

I'm trying to use permalinks in Django using a fairly standard /<app>/<year>/<month>/<day>/<slug> model. However, I get 404s with no additional information urls.py ...
0
votes
4answers
307 views

Robots.txt is not serving

I am using Python with django framework for a web application. I have made a urls.py entry to serve the robots.txt file, however for some reason it seems like it's not able to serve it up. ...
0
votes
2answers
116 views

Django and serving a php script

I'm running Django, and I have a php script that I want to serve at /books, which is at the location /ci/home/bookSearch, but I want it alias'ed at books, is this possible with django? I tried using ...
0
votes
3answers
114 views

django {% tag %} problem

I don't know if its me but {% tag ??? %} has bee behaving a bit sporadically round me (django ver 1.2.3). I have the following main.html file: <html> {% include 'main/main_css.html' %} ...
0
votes
3answers
442 views

Using {% url ??? %} in django templates

I have looked a lot on google for answers of how to use the 'url' tag in templates only to find many responses saying 'You just insert it into your template and point it at the view you want the url ...
0
votes
1answer
188 views

django url dispatching and middleware

In my development system (mac os x) I added the following lines at the end of my urls.py file: if re.match('darwin',sys.platform): # serving media files using the development server urlpatterns ...
0
votes
2answers
180 views

Django development server: templates render from custom views not getting static media

I have a development server running (and serving content) using the built in django server. All my templates that are rendered from generic views point correctly to the static media files ...
0
votes
1answer
456 views

Django cannot find url pattern in URLConf although it is defined

I type the following url in my browser: http://localhost:8000/en/weblog/2010/aug/10/wie-baue-ich-ein-weblog/ an I get a "Page Not Found (404)" error, although the 10th entry ...
0
votes
1answer
648 views

Django urls conf

So now I am still at the Django tutorial part 3: http://docs.djangoproject.com/en/1.1/intro/tutorial03/#intro-tutorial03 Trying to set up the urls.py with this piece of code provided by the tutorial ...
0
votes
1answer
105 views

Django can't find HTML file

I have a html file ('search.html') with a form on it. I have saved it to ~/Django/Templates just for the sake of argument. The Django book said it doesn't matter where I save it, because the framework ...
-1
votes
1answer
75 views

passing a variable through urls.py django

I want to pass a string in a url (like a get request). The point is to get the file requested, and download it. I was just wondering what the urls.py file would look like? I put this, but it is ...