0
votes
2answers
12 views
Django’s list_details views saving queryset to memory (not updating)?
I have a custom model manager that looks like this:
class MyManager(models.Manager)
def get_query_set(self):
'''Only get items that are 'approved' and have a `pub_date` that is in
…
1
vote
2answers
31 views
How to customize the URL of Date-based generic views?
Here is my URL pattern:
news_info_month_dict = {
'queryset': Entry.published.filter(is_published=True),
'date_field': 'pub_date',
'month_format': '%m',
}
and
…
0
votes
0answers
2 views
how can add resource data (CommonUIString.---) to a class
hello.
would someone in here be so kind to explain to me how I can add resources to a selected class when I have that/those specific resource(s) in the project already?? An example would have been …
0
votes
1answer
37 views
Internationalizing URL addresses in Django without putting “en/”, “fr/” etc. into the address
Is there a way of having addresses like:
example.com/books
example.com/livres
And have them work correctly with get_absolute_url() (and the permalink decorator)? Most of the URL …
0
votes
1answer
43 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 it is a dupe.
…
0
votes
1answer
27 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'^analyse/$', …
0
votes
4answers
71 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 = …
0
votes
1answer
22 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 will visit …
0
votes
3answers
51 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/$','person_delete'),
The …
0
votes
2answers
23 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.py, I created two …
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 url from all urls …
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, page_num = 1)
and I …
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 code)
…
0
votes
2answers
54 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 this
'/foo/(\d{2})/', …
0
votes
3answers
72 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:
…
