0
votes
1answer
23 views
Reverse Django generic view, post_save_redirect; error ‘included urlconf doesnt have any patterns’
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 …
0
votes
2answers
33 views
Django is_valid() not working with modelformset_factory
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 is_valid() check before …
0
votes
1answer
12 views
url template tag in django template
guys:
I was trying to use the url template tag in django, but no lucky,
I defined my urls.py like this
urlpatterns = patterns('',
url(r'^analy …
0
votes
4answers
66 views
Django Filtering Problem
I'm trying to set up a filter query in one of my views...basically my code looks as below:
def inventory(request):
vehicle = Vehicle.objects.all().exclude(status__status='In …
0
votes
1answer
32 views
How do I add a prefix to all urls and generically parse that as a kwarg
Let's say I have a site where all urls are username specific.
For example /username1/points/list is a list of that user's points.
How do I grab the /username1/ portion of the …
0
votes
3answers
47 views
Slug field followed by url
Hi, I just started Django and Python, so Im still new to this..
This is my urls.py:
url(r'(?P<slug>[-\w]+)/$','person_detail'),
url(r'(?P<slug>[-\w]+)/delete/$','perso …
0
votes
1answer
24 views
Django multiple view parameters and duplicated named urls
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:
def info(request, pag …
0
votes
1answer
19 views
django url scheme in apache and dev server
I have a a django application which is being served from apache/mod_wsgi under www.mysite.com/mysite
suppose I redirect url "myapp" -> myapp/urls.py
so to visit it from apache I …
0
votes
2answers
21 views
relating models to one another using generic views
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. …
0
votes
3answers
64 views
Using Python Regular Expression in Django.
I have an web address:
http://www.example.com/org/companyA
I want to be able to pass CompanyA to a view using regular expressions.
This is what I have:
(r'^org/?P<company_ …
0
votes
2answers
48 views
Django URL match in HttpResponse object ?
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 th …
0
votes
1answer
60 views
django urls without a trailing slash do not redirect
I've got two applications located on two seperate computers on one in the urls.py file I have a line like the following:
(r'^cast/$', 'mySite.simulate.views.cast')
And that url …
1
vote
1answer
122 views
Django - how can I get permalink to work with “throwaway” slug
I'm trying to add slugs to the url in my django app, much like SO does.
Currently, I have pages that work just fine with a url like this:
http://example.com/foo/123/
I'd like t …
0
votes
1answer
57 views
Django: One project for integrated blog, forums, and custom web app?
Howdy
Im still fairly new to Django, so please explain things with that in
mind.
I'm trying to create three websites using 2 subdomains and 1 domain:
for the blog, blog.mysite.co …
1
vote
2answers
60 views
Django: Reversing a URL with a different template
How can I reverse a url but with a different template name? I specifically have to use urlresolvers.reverse
To be more specific:
I have one view but two urls from which it could …
