0
votes
1answer
23 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
1answer
14 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
18 views
Regex help: Matching paths (using django)
Hate coming up with titles. I need something that'll actually capture the following:
site.com/500/ (a number as the first param)
site.com/500/ABC/ (a number and a 3 letter …
0
votes
2answers
39 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
3answers
50 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
1answer
47 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
87 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
51 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
53 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 …
0
votes
1answer
46 views
Django: Slug in Vietnamese
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. …
0
votes
2answers
24 views
Some problems with the confirmation of the urls in Django views
My models:
Story:
categories = models.ManyToManyField(Category)
Category: name | slug
My urls:
(r'^(?P<cat_slug>.*)/$', 'news.views.archive_category'),
And in views, …
0
votes
2answers
46 views
Django: how to include the file?
Hi!
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:
/usr/project/models/myModel.py
Is it any …
0
votes
2answers
38 views
match an alternative url - regular expresion django urls
Hi, I want march a django-URL with just 2 alternatives /module/in/ or /module/out/
Actually Im using
url(r'^(?P<status>\w+[in|out])/$',
'by_status',
name='module_by-statu …
0
votes
1answer
39 views
Django startup importing causes reverse to happen
This might be an isolated problem, but figured I'd ask in case someone has thoughts on a graceful approach to address it.
Here's the setup:
--------
views.py
--------
from django …
0
votes
1answer
23 views
Multiple filters on a data
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 …
