0
votes
1answer
7 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
64 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
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
20 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
44 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
31 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
23 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
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
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
2answers
25 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
3answers
59 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
41 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
48 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
1answer
58 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 …
0
votes
1answer
54 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 …
