active questions tagged django-urls - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T13:04:55Zhttp://stackoverflow.com/feeds/tag/django-urlshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1794655/reverse-django-generic-view-postsaveredirect-error-included-urlconf-doesnt-h0Reverse Django generic view, post_save_redirect; error 'included urlconf doesnt have any patterns'peakit2009-11-25T04:35:07Z2009-11-25T12:14:11Z
<p>I did see the other question titled 'how to use django reverse a generic view' and 'django named urls, generic views' however my question is a little different and I do not believe it is a dupe.</p>
<p>Code:</p>
<pre><code>from django.views.generic import list_detail, create_update
from django.core.urlresolvers import reverse
from django.conf.urls.defaults import *
partners_add = {'form_class': FooForm,
'post_save_redirect': reverse('foo-list'),
}
urlpatterns = patterns('',
url(r'^foo/$', list_detail.object_list, foo_list, name='foo-list'),
url(r'^foo/add/$', create_update.create_object, foo_add, name='foo-add'),
)
</code></pre>
<p>However when I run the code I get the error "The included urlconf bar.urls doesn't have any patterns in it". Then when I change reverse('foo-list') to '/bar/foo/' it works. If however, within the template if i call {% url foo-list %} I get the correct url and the code works.</p>
<p>Adding the reverse will also break all urls within the same urlpatterns with the same error.</p>
<p>I'm running Django 1.1 on Python 2.6</p>
http://stackoverflow.com/questions/1791942/django-isvalid-not-working-with-modelformsetfactory0Django is_valid() not working with modelformset_factoryMark Koberlein2009-11-24T18:18:38Z2009-11-24T21:15:28Z
<p>I've created a simple contact form using the modelformset_factory to build the form in the view using the DB model. The issue that I am having is that the <strong>is_valid()</strong> check before the save() is not working. When I submit the form with empty fields it still passes the <strong>is_valid()</strong> and attempts to write to the DB. </p>
<p>I would like the is_valid() check to fail when the fields are empty so that the user can be directed to the form again with an error message. I believe that there is a simple solution to this. Do you know what I am missing in my code?</p>
<p>Thanks.</p>
<p>Code:</p>
<p><strong>models.py</strong></p>
<pre><code>class Response(models.Model):
name = models.CharField(max_length=50,verbose_name='Your Name:')
email = models.CharField(max_length=50,verbose_name='Email:')
phone = models.CharField(max_length=50,verbose_name='Phone Number:')
apt_size = models.CharField(max_length=25,
choices=APT_CHOICES,
verbose_name='Apt Size:')
movein_at= models.DateField(verbose_name='Desired Move-In Date')
community = models.CharField(max_length=50,
choices=COMMUNITY_CHOICES,
verbose_name='Community You Are Interested In:')
referred_by = models.CharField(max_length=50,
choices=REFERRED_CHOICES,
verbose_name='Found Us Where?')
referred_other = models.CharField(blank=True,max_length=50,verbose_name='If Other:')
comments = models.TextField(verbose_name='Comments:')
created_at = models.DateTimeField(auto_now_add=True)
def __unicode__(self):
return self.name
</code></pre>
<p><strong>views.py</strong></p>
<pre><code>from summitpark.contact.models import *
from django.shortcuts import render_to_response
from django.forms.models import modelformset_factory
def form(request):
contact_form_set = modelformset_factory(Response,fields=('name','email','phone',
'apt_size','movein_at',
'community','referred_by',
'comments'),
exclude=('id'))
if request.method == 'POST':
formset = contact_form_set(request.POST)
if formset.is_valid():
formset.save()
return render_to_response('contact/confirm.html')
else:
return render_to_response('contact/form.html',{'formset':formset})
else:
formset = contact_form_set(queryset=Response.objects.none())
return render_to_response('contact/form.html',{'formset':formset}
</code></pre>
http://stackoverflow.com/questions/1777612/url-template-tag-in-django-template0url template tag in django templateunknown (google)2009-11-22T02:25:54Z2009-11-22T05:44:13Z
<p>guys:
I was trying to use the url template tag in django, but no lucky,</p>
<p>I defined my urls.py like this</p>
<pre><code>urlpatterns = patterns('',
url(r'^analyse/$', views.home, name="home"),
url(r'^analyse/index.html', views.index, name="index"),
url(r'^analyse/setup.html', views.setup, name="setup"),
url(r'^analyse/show.html', views.show, name="show"),
url(r'^analyse/generate.html', views.generate, name="generate"),
</code></pre>
<p>I defined the url pattern in my view like this</p>
<pre><code>{% url 'show'%}
</code></pre>
<p>then I got this error message</p>
<blockquote>
<p>Caught an exception while rendering:
Reverse for ''show'' with arguments
'()' and keyword arguments '{}' not
found.</p>
<p>Original Traceback (most recent call
last): File
"/Library/Python/2.5/site-packages/django/template/debug.py",
line 71, in render_node
result = node.render(context) File
"/Library/Python/2.5/site-packages/django/template/defaulttags.py",
line 155, in render
nodelist.append(node.render(context))
File
"/Library/Python/2.5/site-packages/django/template/defaulttags.py",
line 382, in render
raise e NoReverseMatch: Reverse for ''show'' with arguments '()' and
keyword arguments '{}' not found.</p>
</blockquote>
<p>I am wondering why django failed to render? what is the right way to define it in the tempalte? </p>
http://stackoverflow.com/questions/1720721/django-filtering-problem0Django Filtering ProblemStephen2009-11-12T08:23:44Z2009-11-12T14:56:56Z
<p>I'm trying to set up a filter query in one of my views...basically my code looks as below:</p>
<pre><code>def inventory(request):
vehicle = Vehicle.objects.all().exclude(status__status='Incoming').order_by('common_vehicle__series__model__manufacturer__manufacturer', 'common_vehicle__series__model__model', 'common_vehicle__year')
year_count = Vehicle.objects.exclude(status__status='Incoming').order_by('-common_vehicle__year__year').values('common_vehicle__year__year').annotate(count=Count('id'))
make_count = Vehicle.objects.exclude(status__status='Incoming').order_by('common_vehicle__series__model__manufacturer__manufacturer').values('common_vehicle__series__model__manufacturer__manufacturer').annotate(count=Count('id'))
return render_to_response('vehicles.html', {'vehicle': vehicle, 'make_count': make_count, 'year_count': year_count,})
def year_filter(request, year):
vehicle = Vehicle.objects.filter(common_vehicle__year__year=year)
return render_to_response('filter.html', {'vehicle':vehicle,})
def make_filter(request, make):
vehicle = Vehicle.objects.filter(common_vehicle__series__model__manufacturer__manufacturer=make).exclude(status__status='Incoming')
return render_to_response('filter.html', {'vehicle':vehicle,})
</code></pre>
<p>So far when I try any of the last two views, I'm only getting the query set from the first view i.e. inventory. The URLConf file looks as below:</p>
<pre><code>(r'^inventory/year/(?P<year>d{4})/?$', 'app.vehicles.views.year_filter'),
(r'^inventory/make/(?P<make>)/', 'app.vehicles.views.make_filter'),
</code></pre>
http://stackoverflow.com/questions/1707621/django-url-scheme-in-apache-and-dev-server0django url scheme in apache and dev serverAnurag Uniyal2009-11-10T12:30:52Z2009-11-10T20:03:12Z
<p>I have a a django application which is being served from apache/mod_wsgi under www.mysite.com/mysite</p>
<p>suppose I redirect url "myapp" -> myapp/urls.py</p>
<p>so to visit it from apache I will visit www.mysite.com/mysite/myapp/page1<br>
to visit it from dev server I will need to visit www.mysite.com/myapp/page1</p>
<p>it also means absolute URLs wil be different in both cases</p>
<p>so what is the best way to handle this , so that app works same way in apache and dev server?</p>
http://stackoverflow.com/questions/1698737/relating-models-to-one-another-using-generic-views0relating models to one another using generic viewsRoss2009-11-09T01:54:29Z2009-11-09T15:15:39Z
<p>I'm new to Django and programming in general. I'm trying to make a simple site that allows players of a sport sign up for leagues that have been created by the admin. In my models.py, I created two models:</p>
<pre><code>from django.db import models
from django.forms import ModelForm
class League(models.Model):
league_name = models.CharField(max_length=100)
pub_date = models.DateTimeField('date published')
class Info(models.Model):
league = models.ManyToManyField(League)
name = models.CharField(max_length=50)
phone = models.IntegerField()
email = models.EmailField()
def __unicode__(self):
return self.info
class InfoForm (ModelForm):
class Meta:
model = Info
exclude = ('league')
</code></pre>
<p>From what I've read, I can probably use the Create/Update/Delete generic views to display a form for the user to sign up for the league. So with my app, I want the user to come to a simple homepage that lists the leagues, be able to click on the league and enter their info to sign up. Here's what my urlconf looks like:</p>
<pre><code>from django.conf.urls.defaults import *
from mysite.player_info.models import League, Info, InfoForm
info_dict = {
'queryset': League.objects.all(),
}
InfoForm = {'form_class' : InfoForm}
urlpatterns = patterns('',
(r'^$', 'django.views.generic.list_detail.object_list', info_dict),
(r'^(?P<object_id>\d+)/$', 'django.views.generic.list_detail.object_detail', info_dict),
url(r'^(?P<object_id>\d+)/results/$', 'django.views.generic.list_detail.object_detail', dict(info_dict, template_name='player_info/results.html'), 'league_results'),
(r'^(?P<object_id>\d+)/info/create/$', 'django.views.generic.create_update.create_object', InfoForm),
)
</code></pre>
<p>Here's my problem: When I click on a league to sign up for on the homepage with my current setup, I get this error: <code>TypeError at /league/1/info/create.... create_object() got an unexpected keyword argument 'object_id'</code>. What am I doing wrong?</p>
http://stackoverflow.com/questions/1700983/slug-field-followed-by-url0Slug field followed by urlHerman2009-11-09T13:26:22Z2009-11-09T14:28:08Z
<p>Hi, I just started Django and Python, so Im still new to this..
This is my urls.py:</p>
<pre><code>url(r'(?P<slug>[-\w]+)/$','person_detail'),
url(r'(?P<slug>[-\w]+)/delete/$','person_delete'),
</code></pre>
<p>The problem is that when I try to do to the url: slug/delete/ it's looking for that whole part slug/delete/ as the slug. When i remove the $ in the 1st url it does not go to the person_delete view, but goes to the person_detail view, ignoring the /delete/ part
Any ideas?</p>
http://stackoverflow.com/questions/1694050/how-do-i-add-a-prefix-to-all-urls-and-generically-parse-that-as-a-kwarg0How do I add a prefix to all urls and generically parse that as a kwargtee2009-11-07T18:58:23Z2009-11-07T22:27:58Z
<p>Let's say I have a site where all urls are username specific. </p>
<p>For example /username1/points/list is a list of that user's points. </p>
<p>How do I grab the /username1/ portion of the url from all urls and add it as a kwarg for all views?</p>
<p>Alternatively, it would be great to grab the /username1/ portion and append that to the request as request.view_user.</p>
http://stackoverflow.com/questions/1690008/django-multiple-view-parameters-and-duplicated-named-urls0Django multiple view parameters and duplicated named urlsdrozzy2009-11-06T20:01:10Z2009-11-06T20:03:33Z
<p>I was just pondering if make two named urls the same produces any problems. I tried it and it works.
So for example, I have a view that is able to do paging:</p>
<pre><code>def info(request, page_num = 1)
</code></pre>
<p>and I would like to call it both ways, as:</p>
<pre><code>/info
/info/page/1
</code></pre>
<p>so I made urls like:</p>
<pre><code>url(r'^info/$', 'views.info', name='info'),
url(r'^info/(?P<page_num>)\d+)/$', 'views.info', name='info'),
</code></pre>
<p>and it seems to work. Anything wrong with that, or should I name my second url differently, like <strong>info_paginated</strong> for example.</p>
http://stackoverflow.com/questions/1660688/regex-help-matching-paths-using-django0Regex help: Matching paths (using django)damnitshot2009-11-02T11:19:41Z2009-11-02T11:41:52Z
<p>Hate coming up with titles. I need something that'll actually capture the following:</p>
<blockquote>
<p>site.com/500/ (a number as the first param)</p>
<p>site.com/500/ABC/ (a number and a 3 letter code)</p>
<p>site.com/500/ABC/DEF/ (a number and 2x 3 letter codes)</p>
</blockquote>
<p>What I have been messing with:</p>
<p><code>^(\d+/)?(\w{3}/)?(\w{3}/)?$</code></p>
<p>That sort of works but includes the slashes in the arguments (so I end up with "500/"). Moving the slashes outside of the brackets won't match /500/ABC/ since the ? only works on the slash.</p>
<p>Obviously I can make it in multiple ones but I'm sure there's a way to do it in one go.</p>
<p>As well, I only want the actual arguments, since as I said it can work but ends up adding slashes to them, which isn't too good.</p>
<p>Thanks for any help.</p>
http://stackoverflow.com/questions/1623397/django-url-match-in-httpresponse-object0Django URL match in HttpResponse object ?Stefano Borini2009-10-26T06:46:09Z2009-10-26T13:35:30Z
<p>In django, when a URL is matched, the match group is passed as a second parameter to the view function, the first being a HttpRequest object. For example, with a URL patter like this</p>
<pre><code>'/foo/(\d{2})/', 'app.views.handler'
</code></pre>
<p>the handler routine will have</p>
<pre><code>def handler(request, value):
</code></pre>
<p>where value will contain a two digit number (as a string).</p>
<p>My question is: is value also contained in the request object, and if yes, how can I get it (of course, parsing the URL from the request object is not an option, too impractical).</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1604987/some-problems-with-the-confirmation-of-the-urls-in-django-views0Some problems with the confirmation of the urls in Django viewsAnh Tran2009-10-22T04:14:55Z2009-10-25T01:46:56Z
<p><strong>My models:</strong></p>
<p>Story: </p>
<pre><code>categories = models.ManyToManyField(Category)
</code></pre>
<p>Category: name | slug</p>
<p><strong>My urls:</strong></p>
<pre><code>(r'^(?P<cat_slug>.*)/$', 'news.views.archive_category'),
</code></pre>
<p>And in <strong>views</strong>, I use:</p>
<pre><code>def archive_category(request, cat_slug):
entry = News.objects.get( categories__slug=cat_slug )
return render_to_response('news_archive_category.html', {'entry':entry, })
</code></pre>
<p>It has something wrong if I have a story of two or more category. Please help me. Many thanks!</p>
http://stackoverflow.com/questions/1619554/using-python-regular-expression-in-django0Using Python Regular Expression in Django.Noah Clark2009-10-25T00:08:20Z2009-10-25T00:20:42Z
<p>I have an web address:</p>
<p><a href="http://www.example.com/org/companyA" rel="nofollow">http://www.example.com/org/companyA</a></p>
<p>I want to be able to pass CompanyA to a view using regular expressions. </p>
<p>This is what I have:</p>
<pre><code>(r'^org/?P<company_name>\w+/$',"orgman.views.orgman")
</code></pre>
<p>and it doesn't match.</p>
<p>Ideally all URL's that look like example.com/org/X would pass x to the view.</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1480124/django-startup-importing-causes-reverse-to-happen0Django startup importing causes reverse to happennicknack2009-09-26T00:54:40Z2009-10-23T00:00:01Z
<p>This might be an isolated problem, but figured I'd ask in case someone has thoughts on a graceful approach to address it.</p>
<p>Here's the setup:</p>
<pre><code>--------
views.py
--------
from django.http import HttpResponse
import shortcuts
def mood_dispatcher(request):
mood = magic_function_to_guess_my_mood(request)
return HttpResponse('Please go to %s' % shortcuts.MOODS.get(mood, somedefault))
------------
shortcuts.py
------------
MOODS = # expensive load that causes a reverse to happen
</code></pre>
<p>The issue is that shortcuts.py causes an exception to be thrown when a reverse is attempted before django is done building the urls. However, views.py doesn't yet need to import shortcuts.py (used only when mood_dispatcher is actually called). Obvious initial solutions are:
1) Import shortcuts inline (just not very nice stylistically)
2) Make shortcuts.py build MOODS lazily (just more work)</p>
<blockquote>
<blockquote>
<p>What I ideally would like is to be able to say, at the top of views.py, "import shortcuts except when loading urls"</p>
</blockquote>
</blockquote>
http://stackoverflow.com/questions/1605041/django-slug-in-vietnamese0Django: Slug in VietnameseAnh Tran2009-10-22T04:37:17Z2009-10-22T04:55:06Z
<p>A site in Vietnamese, it is virtually no different to English. However, there is a problem that is slug. When I type characters such as "ư", "ơ", "á",... Django is not identified. Solution here is to replace characters that do not sign into.
Eg: </p>
<pre><code>ư -> u
ơ -> o
á -> a
</code></pre>
<p>One from "những-viên-kẹo" will become "nhung-vien-keo".
However, I do not know how to do this. Someone help me. Thank you very much!</p>
http://stackoverflow.com/questions/1596552/django-urls-without-a-trailing-slash-do-not-redirect0django urls without a trailing slash do not redirectwhatWhat2009-10-20T18:41:56Z2009-10-20T18:50:40Z
<p>I've got two applications located on two seperate computers on one in the urls.py file I have a line like the following: </p>
<pre><code>(r'^cast/$', 'mySite.simulate.views.cast')
</code></pre>
<p>And that url will work for both mySite.com/cast/ and MySite.com/cast. But on the other server I have a similar url written out like:</p>
<pre><code>(r'^login/$', 'mySite.myUser.views.login')
</code></pre>
<p>For some reason for this site the url mySite.com/login/ will work but mySite.com/login will hang and won't direct back to mySite.com/login/ like the other site. Is there something I missed? Both url.py files look identical to me.</p>
http://stackoverflow.com/questions/1580775/django-one-project-for-integrated-blog-forums-and-custom-web-app0Django: One project for integrated blog, forums, and custom web app?cadwag2009-10-16T22:44:45Z2009-10-16T22:50:38Z
<p>Howdy</p>
<p>Im still fairly new to Django, so please explain things with that in
mind.</p>
<p>I'm trying to create three websites using 2 subdomains and 1 domain:<br />
for the blog, blog.mysite.com<br />
for the forums, forums.mysite.com<br />
for the custom web app, mysite.com </p>
<p>When building the custom web app, I used contrib.auth to make use of
the built-in django provided user models and functionality.</p>
<p>For the forums, I am planning on using SNAPboard (http://
code.google.com/p/snapboard/) with minimal, if any, modifications. On
initial inspection, it looks like it also uses contrib.auth users.</p>
<p>For the blog, I will probably be rolling my own lightweight blogging
app (since that seems to be the Django way and, also, b/c as Bennet
mentions, there is no killer Django Blog app)</p>
<p>Currently, I am considering two features that require some integration
between the three sites. First, I want to have the users of the custom
web app to use the same account to also log into the forums. Second, I
also (but I haven't figured out how I'm going to do this yet) would
like my blog posts to automatically become a topic for discussion in
the forums (this is just an idea I had, I might end up dropping it).</p>
<p>Ok, so to my questions:</p>
<p>1) Again, I'm new to Django, but this integration leads me to believe
the three websites need to be all under one project. Is this correct?</p>
<p>2) How would I accomplish the url structure for the websites that I
described above (blog.mysite.com, etc)? In the project's urls.py, I
don't know how to filter off of subdomains. If it was mysite.com/
forums/, that would be easy, but I don't know how to to catch
forums.mysite.com and forward it to the appropriate Django app.</p>
<p>3) Would I have to make use of the django.contrib.sites framework? I
don't understand that framework fully, but it seems like it's used
when two different websites are using the same django app in the
background. Whereas my three websites are all using different django
apps, but I want them to share a little bit of data.</p>
<p>Thanks for your help.</p>
http://stackoverflow.com/questions/1577530/django-reversing-a-url-with-a-different-template1Django: Reversing a URL with a different templatecrashekar2009-10-16T11:31:27Z2009-10-16T12:18:31Z
<p>How can I reverse a url but with a different template name? I specifically have to use <code>urlresolvers.reverse</code></p>
<p>To be more specific:</p>
<p>I have one view but two urls from which it could be accessed</p>
<pre><code>(r'^url/$', 'view1', {'template1':'template1.html'}, 'access-url1'),
(r'^url_dynamic/$', 'view1', {'template1':'template_dynamic.html'}, 'url-dynamic'),
</code></pre>
<p>I don't want to write any code differentiating what template to return in the view because I might want change it on the fly. So I need the flexibility to change the url while calling it for eg</p>
<pre><code>urlresolvers.reverse('view1', kwargs = {'template1':'template_dynamic.html'})
(which btw does not work throws noreversematch)
</code></pre>
<p>I could also just copy <code>view1</code> into <code>view2</code> and call it with url-dynamic but that would violate DRY.</p>
http://stackoverflow.com/questions/1569837/django-how-can-i-get-permalink-to-work-with-throwaway-slug1Django - how can I get permalink to work with "throwaway" slug TM2009-10-15T01:21:36Z2009-10-15T05:39:13Z
<p>I'm trying to add slugs to the url in my django app, much like SO does.</p>
<p>Currently, I have pages that work just fine with a url like this:</p>
<pre><code>http://example.com/foo/123/
</code></pre>
<p>I'd like to add 'slugified' urls like so:</p>
<pre><code>http://example.com/foo/123/foo-name-here
</code></pre>
<p>I can get it to work just fine, by simply modifying the urlconf and adding a throwaway value to the view function:</p>
<pre><code>#urls.py
ulpatterns = patterns('project.app.views',
url(r'^foo/(?P<foo_id>\d+)/(?P<name_slug>\w+)/$', 'foo_detail', name='foo_detail'),
)
#views.py:
def foo_detail(request, foo_id, name_slug):
# stuff here, name slug is just discarded
</code></pre>
<p>Visting the url with the slug works just fine.</p>
<p>However, my problem is when I am using <code>@models.permalink</code>.</p>
<p>For my <code>Foo</code> model, I used to have the following, which worked just fine:</p>
<pre><code>@models.permalink
def get_absolute_url(self):
return ('foo_detail', [str(self.id),])
</code></pre>
<p>However, after my change, whenever I call <code>{{ foo.get_absolute_url }}</code> in my templates, the result is always an empty string.</p>
<p>I have tried the following two replacements for <code>get_absolute_url</code>, neither of which is working:</p>
<pre><code>from django.template.defaultfilters import slugify
# attempt 1
@models.permalink
def get_absolute_url(self):
return ('foo_detail', [str(self.id), slugify(self.name)])
# attempt 2
@models.permalink
def get_absolute_url(self):
return ('foo_detail', (), {
'foo_id': str(self.id),
'name_slug': slugify(self.name),
})
</code></pre>
<p>Note that if I add a <code>print slugify(self.name)</code> before returning, the slugified name is showing up in the console just fine.</p>
<p>When invoking <code>{{ foo.get_absolute_url }}</code> in my templates, the result is always an empty string, and I don't get any errors.</p>
<p>I know I could replace the method with <code>return '/foo/%s/%s' % (str(self.id), slugify(self.name))</code>, but I'm trying to get the permalink working so that my URL is only defined in one place. What am I doing wrong?</p>
http://stackoverflow.com/questions/1562519/multiple-filters-on-a-data0Multiple filters on a data sridhary2009-10-13T19:46:24Z2009-10-13T21:16:51Z
<p>I want have have multiple filters on the data. like first i want to filter by date field and then by type field and then by some other field .... as many times as possible. i must pass on the field and value in the url and it must apply the filter and pass the data to the next filter.</p>
http://stackoverflow.com/questions/1550601/django-how-to-include-the-file0Django: how to include the file?opetrov2009-10-11T12:37:46Z2009-10-11T13:23:18Z
<p>Hi!</p>
<p>I have a Django Application.
I want to have all my models to be separated in files and lay in the specific directory, for instance:</p>
<pre><code>/usr/project/models/myModel.py
</code></pre>
<p>Is it any possible?
Just importing through from myModel import * doesn't work, unfortunately.</p>
<p>Is there any specific way to do this?</p>
http://stackoverflow.com/questions/872100/no-reverse-error-in-google-app-engine-django-patch2No reverse error in Google App Engine Django patch?vignesh2009-05-16T10:02:28Z2009-10-06T22:48:30Z
<p>I am using <a href="http://en.wikipedia.org/wiki/Google%5FApp%5FEngine" rel="nofollow">Google App Engine</a> patch Django.</p>
<p>When I try to go to the admin site,</p>
<blockquote>
<p><a href="http://127.0.0.1:8080/admin/" rel="nofollow">http://127.0.0.1:8080/admin/</a></p>
</blockquote>
<p>, I keep getting this error:</p>
<blockquote>
<p>TemplateSyntaxError at /admin/
Caught an exception while rendering: Reverse for
'settings.django.contrib.auth.views.logout' with arguments
'()' and keyword arguments '{}' not found.</p>
</blockquote>
<p>It's a fresh installation and I have not changed much. But I
am not able to solve this problem.</p>
<p>This is the urls.py file that comes with the patch inside
the registration app:</p>
<pre><code>urlpatterns = patterns('',
# Activation keys get matched by \w+ instead of the more specific
# [a-fA-F0-9]{40} because a bad activation key should still get to
# that way it can return a sensible "invalid key" message instead
# confusing 404.
url(r'^activate/(?P<activation_key>\w+)/$',
activate,
name='registration_activate'),
url(r'^login/$',
auth_views.login,
{'template_name': 'registration/login.html'},
name='auth_login'),
url(r'^logout/$',
auth_views.logout,
name='auth_logout'),
url(r'^password/change/$',
auth_views.password_change,
name='auth_password_change'),
url(r'^password/change/done/$',
auth_views.password_change_done,
name='auth_password_change_done'),
url(r'^password/reset/$',
auth_views.password_reset,
name='auth_password_reset'),
url(r'^password/reset/confirm/(?P<uidb36>.+)/(?P<token>.+)/$',
auth_views.password_reset_confirm,
name='auth_password_reset_confirm'),
url(r'^password/reset/complete/$',
auth_views.password_reset_complete,
name='auth_password_reset_complete'),
url(r'^password/reset/done/$',
auth_views.password_reset_done,
name='auth_password_reset_done'),
url(r'^register/$',
register,
name='registration_register'),
url(r'^register/complete/$',
direct_to_template,
{'template': 'registration/registration_complete.html'},
name='registration_complete'),
)
</code></pre>
http://stackoverflow.com/questions/1506646/match-an-alternative-url-regular-expresion-django-urls0match an alternative url - regular expresion django urlspanchicore2009-10-01T21:37:31Z2009-10-02T15:32:27Z
<p>Hi, I want march a django-URL with just 2 alternatives /module/in/ or /module/out/</p>
<p>Actually Im using</p>
<pre><code>url(r'^(?P<status>\w+[in|out])/$',
'by_status',
name='module_by-status'),
</code></pre>
<p>But matches with other patterns like /module/i/, /module/n/, /module/ou/; etc.</p>
<p>Any hint is apreciated :)</p>
http://stackoverflow.com/questions/891621/collecting-additional-information-in-the-django-administration-page0Collecting additional information in the Django administration page?ha221092009-05-21T06:26:39Z2009-09-29T07:00:04Z
<p>on save if user select certain option i want to take user to a page where he can have one more field to be filled and then redirect to admin default page</p>
http://stackoverflow.com/questions/645407/django-named-urls-generic-views0Django named urls, generic views?TehOne2009-03-14T04:53:17Z2009-09-28T20:41:15Z
<p>So, here is one of my urls.py</p>
<pre><code>urlpatterns = patterns('items.views',
url(r'^(?P<item_id>[\d+])/$', 'view_listing', name="item_view"),
)
</code></pre>
<p>And in my template, I can do this: <code><a href="{% url item_view 1 %}">here</a></code> and I'll get a link to the right page. Everything works great!</p>
<p>But, here is another one</p>
<pre><code>urlpatterns = patterns('django.views.generic.list_detail',
(r'^(?P<slug>[\w-]+)/$', 'object_detail', dict(page_info, slug_field='slug'), "page_view"),
)
</code></pre>
<p>But in my template if I try this: <code><a href="{% url page_view slug='TermsAndConditions' %}">Terms and Conditions</a></code> or this <code><a href="{% url page_view 'TermsAndConditions' %}">Terms and Conditions</a></code> it errors out with this error:</p>
<pre><code>TemplateSyntaxError at /
Could not parse the remainder: ''TermsAndConditions '' from ''TermsAndConditions ''
</code></pre>
<p>Does anyone know if it's possible to use named urls with generic views and the <code>url</code> template tag like this? Or the right way to get it to work with generic views?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1476996/how-to-find-which-view-is-resolved-from-url-in-presence-of-decorators2How to find which view is resolved from url in presence of decoratorsNiklas2009-09-25T12:20:42Z2009-09-25T22:32:52Z
<p>For debugging purposes, I'd like a quick way (e.g. in manage.py shell) of looking up which view that will be called as a result of a specific URL being requested.<br />
I know this is what django.core.urlresolvers.resolve does, but when having a decorator on the view function it will return that decorator.<br />
Example:</p>
<pre><code>>>>django.core.urlresolvers.resolve('/edit_settings/'))
(Allow, (), {})
</code></pre>
<p>...where Allow is the decorator, not the view it's decorating.</p>
<p>How can I find the view without manually inspecting the urls.py files?</p>
http://stackoverflow.com/questions/1469131/tidy-up-complex-url-dispatcher1Tidy up complex URL dispatcherbanterability2009-09-23T23:56:18Z2009-09-24T01:33:17Z
<p>I have two different kinds of objects that I'd like to live under the same URL. One group of objects needs to be passed to the view function 'foo' and another group needs to be passed to 'bar'.</p>
<p>I'm currently doing this with a big long list of hardcoded URLs, like so...</p>
<pre><code>urlpatterns = patterns('project.views',
(r'^a/$', 'foo'),
(r'^b/$', 'foo'),
(r'^c/$', 'foo'),
#...and so on until...
(r'^x/$', 'bar'),
(r'^y/$', 'bar'),
(r'^z/$', 'bar'),
)
</code></pre>
<p>Is it possible to define a list of each type of URLs like...</p>
<pre><code>foo_urls = ['a', 'b', 'c'] #...
bar_urls = ['x', 'y', 'z'] #...
</code></pre>
<p>...and then check the incoming URL against those lists? (If it's in 'foo_urls', send to 'project.views.foo'; if it's in 'bar_urls', send to 'project.views.bar')?</p>
<p>I'm limited to keeping this structure to maintain compatibility with the URLs from the previous site, but any advice on ways to simplify my urls.py would be much appreciated.</p>
http://stackoverflow.com/questions/1458829/modify-address-in-django-middleware1Modify address in Django middlewareyezooz2009-09-22T08:41:05Z2009-09-22T14:06:31Z
<p>hello,</p>
<p>I don't know if it's possible but I'd like to add few parameters at the end of the URL using middleware. Can it be done without redirect after modyfing requested URL?</p>
<p>ie.
user clicks: .../some_link
and middleware rewrites it to: .../some_link?par1=1&par2=2</p>
<p>Other way is to modify reponse and replace every HTML link but it's not something I'd like to do.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1457006/djangos-httpresponseredirect-seems-to-strip-off-my-subdomain0Django's HttpResponseRedirect seems to strip off my subdomain?MikeN2009-09-21T21:34:01Z2009-09-22T05:19:01Z
<p>Whenever my django site calls "HttpResponseRedirect" in a view object to redirect to another url it strips off the sub-domain and goes back to the main site. I'm working off of the SVN branch of Django. Here is the example:<br/></p>
<pre>
#Request comes in as https://sub1.mydomain.com
def view(request):
return HttpResponseRedirect("/test_url") #The browser will actually get redirected to https://mydomain.com/test_url
</pre>
<p><br/></p>
<p>Is there a reason this is done? Should I have to redirect to the full path including the sub-domain?</p>
http://stackoverflow.com/questions/1456902/django-comment-append-symbol-to-the-url-comment0Django Comment, append symbol to the url comment?Asinox2009-09-21T21:12:29Z2009-09-21T21:12:29Z
<p>Hi guys, im using the comment system, now, i would like to re-write the segment form the url comment and append a symbol #, i want to move the page seccion to the comment list exactly to the last comment user with <code><a name=#{{comment.id}}?> username </a></code></p>
<p>Im using next for redirect the usen when the comment was posted:</p>
<pre><code>{% get_comment_form for object as form %}
<form action="{% comment_form_target %}" method="POST">
{{ form }}
<input type="hidden" name="next" value="{{ object.get_absolute_url }}" />
<input type="submit" name="preview" class="submit-post" value="Preview"></td>
</form>
</code></pre>
<p>But in the Django Doc dont say nothing about rewrite or customizer the comment redirect / url</p>
<p>Any idea?</p>
<p>Thanks</p>