1
vote
1answer
39 views
Django DRY URLs for Model access
Reader's Digest version: How do I get data (either single row if specified or full table) from a model by taking a URL argument of the model's name without hardcoding the URLconfs to match each model? …
0
votes
1answer
34 views
Django: What is the difference b/w HttpResponse vs HttpResponseRedirect vs render_to_response
The above mentioned things are giving me almost the same results was wondering whats the main difference in them.
2
votes
1answer
52 views
How do you use Django URL namespaces?
I'm trying to get the hang of Django URL namespaces. But I can't find any examples or documentation.
Here is what I have tried.
urls.py:
from django.conf.urls.defaults import *
urlpatterns = …
0
votes
2answers
38 views
Pass session data onto URL
I have some information that is set in the sessions, and I was wondering if it's possible to pass this info onto the URL for the view that uses this session data. I want this to be working in such a …
0
votes
2answers
233 views
Django admin, custom view error : invalid literal for int() with base 10
I'm trying to make a custom view in Django admin. I'm reading from this site, Simple Django Admin Preview, but I have a problem:
ValueError: invalid literal for int() with base 10: '13/preview'
…
3
votes
1answer
87 views
Dynamic SEO-friendly URLs
I'd like to deploy dynamic URL's for my app in two ways:
when viewing available vehicle, I get a link like: http://www.url.com/2006-Acura-MDX-Technology-Package
I also have a filter page, so here, …
0
votes
2answers
25 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
…
0
votes
1answer
46 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.http import …
1
vote
2answers
35 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
67 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
43 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
74 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
30 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
2answers
27 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 …
