The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
44 views

How to provide initial data to django form wizard?

according to the form wizard docs, the initial data should be a static dict. but is it possible to provide initial data dynamicly. here is my situation def get_context_data(self, form, **kwargs): ...
0
votes
1answer
24 views

Django: match one or more from a set of keyworded regular expressions in an urlconf

I have a Django view that takes three optional keyworded arguments. I want to handle the regular expression for matching possible urls to this view in one line. I want to structure the urls nicely. ...
2
votes
2answers
30 views

URL config error Django

I have a link a href="editYou/{{costumer.slug}}" and URL parttern (r'editYou/<?P(costumerSlug>.*)/$', 'editYou'), that points to method def editYou(request, costumerSlug): but Django ...
1
vote
1answer
71 views

Django: GET css returns 404?

I am developing a Django site and after a series of edits I ran my server again when suddenly - no css! The server still displays the html site, of course, but the css all across the site is throwing ...
1
vote
0answers
66 views

Django URLs with/without proxy server

I have two Django apps (say, app1 and app2) hosted on the same machine using Apache mod_wsgi. These two apps are hosted on two different environments: On a physical server where only these two apps ...
0
votes
1answer
53 views

Django Url, Slug for Detail Page

I'm having trouble configuring my url to display a detail view. Clicking on this link: <a href='{% url blog_detail blog.slug %}'>{{ blog.name }}</a> shows blog.html, when I thought it ...
0
votes
1answer
38 views

NoReverseMatch using URLConf & Generic Views in Django 1.4.x

I have this in my template file: <a href="{% url polls.views.vote poll.id %}">Vote again?</a> This was my URLConf: urlpatterns = patterns('polls.views', url(r'^$', 'index'), ...
0
votes
1answer
49 views

Reverse url in django model help_text

I want to add a link to terms and conditions in help_text property of django model_field, basically I would like to write code like: class UserRegisterData(models.Model): accepted_terms = ...
1
vote
1answer
61 views

Django URLconf including: package imports not working

I'm making a simple django site, for which I'm using the django-registration extension. I should probably add that I have just copied the django-registration source to my project as if it was my own ...
0
votes
0answers
85 views

Django root site in virtual directory

The following is the setup: I have a virtual directory in IIS 6 in which my Django app lives, IIS is configured to pass every request on that virtual directory to the Django WSGI handler Let's say ...
3
votes
1answer
157 views

Serving different urlconfs in a single Django project

My question is about how to serve multiple urls.py (like urls1.py, urls2.py and so on) files in a single Django project. I am using Win7 x64, django 1.4.1, python 2.7.3 and as a server django ...
0
votes
2answers
191 views

Reload django url's without restarting the server

Why? I want multiple models on the first level of the path :) Using: Django 1.4.1 Code setup urls: PAGE_SLUGS = '|'.join(Page.objects.values_list('slug', flat=True)) BRAND_SLUGS = ... same concept ...
1
vote
1answer
144 views

Django, name parameter in urlpatterns

I'm following a tutorial where my urlpatterns are: urlpatterns = patterns('', url(r'^passwords/$', PasswordListView.as_view(), name='passwords_api_root'), ...
0
votes
0answers
80 views

Haystack faceted searching URLConf

I'm trying to set up faceted browsing in Django and Haystack, using the example at http://django-haystack.readthedocs.org/en/latest/faceting.html However, I'm not sure how to set up my urlconf; I ...
0
votes
1answer
221 views

Defining nested namespaces in a URLConf, for reversing Django URLs — does anyone have a cogent example?

I have been trying to to figure out how to define a nested URL namespace (which look:like:this) in a Django URLConf. Before this, I figured out how to do a basic URL namespace and came up with this ...
0
votes
2answers
50 views

how to “break” from a regex in django urlconf

I have the following views: def tag_page(request, tag): products = Product.objects.filter(tag=tag) return render(request, 'shop/tag_page.html', {'products': products, 'tag': tag}) def ...
2
votes
2answers
125 views

Django URLS, using a ? in the URL

I am trying to do some Django URL matching. i want a few urls where i have http://mysite.com/base?sort=type1/, http://mysite.com/base?sort=type2/, etc. I can't figure out how to URL match these ...
2
votes
1answer
94 views

Django: avoid passing common url param to each view [duplicate]

Possible Duplicate: Django: How to access URL regex parameters inside a middleware class? I am using django in google appengine. Each url in my app has a company code in the format: ...
3
votes
1answer
278 views

Django: How to access URL regex parameters inside a middleware class?

I am working on a Django project on Google App Engine. I have a URL like: http://localhost:8080/[company]/projects/project Note that [company] is a URL parameter defined in my urls.py like: ...
0
votes
1answer
624 views

How do I properly decouple URLConf in Django tutorial 3?

I am following the Django tutorial and have made it to Decoupling the URLConfs in tutorial 3. Prior to this step, everything was working. Now, when I do the final step of Removing hardcoded URLs in ...
2
votes
2answers
108 views

How can I write the regex for those urls

I'm trying to build a small wiki, but I'm having problems writing the regex rules for them. What I'm trying to do is that every page should have an edit page of its own, and when I press submit on ...
1
vote
3answers
72 views

Django urlconf issue (know there has to be a simple answer)

Hi I am a beginner with django and all I have left to deploy the site is a stupid url conf problem. I have a simple site with 5 pages that are home,contact,about,reasons, and benefits. Simple right, ...
1
vote
1answer
146 views

Django Urls and App urls with Ajax POST

I've found an issue and tracked it down to url conf. I'm attempting to perform an ajax post to the /gallery/add page which adds a new record into the database. Originally I added a urls.py into my ...
1
vote
1answer
408 views

Using Django's new i18n_patterns: How to fall back to the default language specified in the settings module?

I'm using the new i18n_patterns of Django 1.4: from django.conf.urls import patterns, include, url from django.conf.urls.i18n import i18n_patterns from django.contrib import admin ...
1
vote
0answers
136 views

Django, dynamic urlconfs, thread-safety

I need to dynamically generate urlpatterns based on data in the session in a thread-safe way. I implemented this via a custom URLResolver that defers url resolving until later. I do know about ...
-1
votes
1answer
35 views

The requested URL in my Django app can grow indefinately and still be matched by Django URLResolvers

I have the following line in my src/urls.py (r'^nomundo', include('interviews.urls')), and in my src/interviews/urls.py I have the following: r'/$', 'interviews.views.interviews'), This ...
0
votes
2answers
113 views

regex “OR” matching in Django urlconf without sending match as a view parameter

In my Django urlconf, i'd like to return a 404 for requests probing for scripts. Otherwise, the request is needlessly hitting the database to look for a corresponding FlatPage, since i'm using the ...
1
vote
1answer
112 views

Django include url causes rendering error?

I have a working django project. I wrote a small app - pm - and I tried to include its urls.py in the active project: urlpatterns = patterns('', # ... some urls here url(r'^$', views.home, ...
0
votes
1answer
59 views

Django-jchat url include error

This is my urls.py in my main project folder: from django.conf.urls.defaults import patterns, include, url from django.contrib import admin admin.autodiscover() urlpatterns = ...
1
vote
1answer
178 views

Django urlconf performance: will nested pattern groups help or hurt?

I'm wondering if restructuring my apps' urlconfs with several nested pattern groups will provide a performance boost for when Django looks for a request-matching pattern. I'm not sure on how to test ...
0
votes
2answers
532 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 ...
1
vote
3answers
254 views

Django: variable parameters in URLconf

I've been looking for this question and couldn't find any, sorry if it's duplicated. I'm building some kind of ecommerce site, similar to ebay. The problem i have arise when i'm trying to browse ...
0
votes
2answers
157 views

Python Django UnboundLocalError while calling a different function

Not long ago I started programming Python with Django. Sometimes I get strange errors and have no clue, why. So, let's beginn with one of these errors. I have a View with two functions. Example: def ...
0
votes
1answer
89 views

Django url pattern with or without <projectName> as path to view?

I'm new to Django and been reading the http://djangobook.com and finds that the following two patterns work the same way with no hiccups for project named mysite and views.py on the project root with ...
1
vote
2answers
275 views

Django Jquery Get URL Conf

Ok, so I'm trying to call the function def user_timetable(request, userid): user = get_object_or_404(TwobooksUser,id = userid) timeSlots = TimeSlot.objects.filter(user = request.user) ...
2
votes
1answer
668 views

URL pattern matching in django

I am getting a Page Not Found when I try to access http://127.0.0.7:8000/edit-paragraph/6/edit/, with the following error: Using the URLconf defined in mysite.urls, Django tried these URL patterns, ...
0
votes
1answer
153 views

Django Custom Template for GenericSitemap

I have a generic sitemap working. I'm now looking to customize the output. Im passing in the custom template_name but it doesn't use it (r'^sitemap/$', 'django.contrib.sitemaps.views.sitemap', ...
0
votes
1answer
547 views

Multiple parameters in Django URLconf

Say I want my URLs to have alphanumeric string parameters, where each parameter is separated by a '+' and we have more than 1 parameter. That is, blah.com/1a+2b would be valid, but blah.com/1a or ...
0
votes
1answer
116 views

Django syntax error in URLConf

I'm trying to create a named URL that I can refer to in my templates to point to a page with various parameters but I am getting a syntax error for the following line: ...
4
votes
4answers
2k views

django - regex for optional url paramaters

I have a view in django that can accept a number of different filter parameters, but they are all optional. If I have 6 optional filters, do I really have to write urls for every combination of the 6 ...
2
votes
1answer
940 views

Django Tinymce js not loading

hi all Im tryng to integrate a tinymce in a django admin page. I've installed the django-tinymce module (http://code.google.com/p/django-tinymce/) I followed the instructions so these are my files: ...
4
votes
3answers
1k views

Including a querystring in a django.core.urlresolvers reverse() call

I'm trying to reverse a named URL and include a querystring in it. Basically, I've modified the login function, and I want to send ?next= in it. Here's what I'm doing now: reverse(name) + "?next=" + ...
1
vote
1answer
181 views

How to set-up generic views in an application's urls.py?

Let's say I have a project's urlconf which includes myapp's urlconf: urlpatterns = patterns('', (r'^myapp', include(myapp.urls)), ) and a myapp/urls.py with some routes defined: urlpatterns = ...
1
vote
0answers
111 views

Localization of django urlconf

Is it possible to translate Django urlconf per request? I've tried this: from django.utils.translation import ugettext as _ urlpatterns = patterns('', url(_(r'^foo$'), 'app.views.foo'), ) And ...
1
vote
1answer
147 views

Get the currently used url when an on the template in django for us in a breadcrumb?

I have an app which serves two purposes - displays members and centres of my company. They both work exactly the same, save a different variable when filtering my model. Problem is I can't get the ...
0
votes
3answers
150 views

Django - How to use URLconfs with an apps folder?

I'm following the tutorial on the Django website but I'm trying to expand upon it. I like the organizational scheme of putting all of your apps in an "apps" folder. I'm trying to figure out the ...
0
votes
2answers
138 views

Variables and Django URLConf

I'm having trouble extracting a string from my URL. Here's what I've got.. it keeps 404ing. urls.py: urlpatterns = patterns('', (r'^user/(?P<username>\w{0,50})/$', profile,), ) views.py: ...
0
votes
2answers
209 views

merge 2 django (very similar) urlconfs in one

I have an app called "products" that manages "products" and "categories". And I have products/views.py (with generic views) that goes like this: Objects = { 'products': {'model':Product, ...
2
votes
1answer
2k views

Django urlpatterns frustrating problem with trailing slashes

All of the examples I can find of urlpatterns for django sites have a separate entry for incoming urls that have no leading slash, or the root folder. Then they handle subfolders on each individual ...
1
vote
4answers
659 views

Reg Ex Django Url Conf

These is my django URLconf: urlpatterns = patterns('', ('^hello/$', hello), (r'^polls/$', 'mysite.polls.views.index'), (r'^polls/(?P<poll_id>\d+)/$', 'mysite.polls.views.detail'), ...

1 2