0
votes
2answers
30 views
Django general template controled by which variables?
I have been developing some Django app and there's some duplicated code for different Models. I'd like to create a generic table template and pass the Model class, a list of model instances, and Form …
1
vote
7answers
82 views
What are some famous website that was built in Django?
Hi,
I've tried to search it here and google'd it but can't find any or relevant question. What are some famous sites that has been built in Django?
Thanks!
0
votes
2answers
40 views
How to connect an application with Facebook?
The topic may be a bit ambiguous.
I am writing a Python application. I want to upload it on Facebook as a Facebook application (NOT Facebook Connect).
But I am having the hardest time figuring out …
0
votes
0answers
4 views
Using Django Forms to display and edit?
I'm wrestling with how to best create HTML pages in Django that can either be used for displaying or editing data. That is, I'd like the field's values to appear as text in display mode, but in their …
1
vote
2answers
12 views
Django date filter to output “am” or “A.M.”
The Django date template filter takes the format character "a" for "a.m." and "A" for "AM". How do you get lower case without periods or upper case with the periods?
You can use lower and upper …
0
votes
1answer
6 views
django fixtures: load multiple fixtures on syncdb
Hi,
I have a lot of things in my initial_data.json right now. I wondered if there is a way to split the data in files (by model) so that all of the files are loaded via same manage syncdb command?
…
2
votes
3answers
33 views
Django template and Python dictionary data structure question
I am trying to present a dictionary from my view.py at the HTML template such as:
test = { 'works': True, 'this fails':False }
and in the template:
This works without a problem:
{{ test.works }}
…
0
votes
3answers
67 views
+100
Unique model field in Django and case sensitivity (postgres)
Consider the following situation: -
Suppose my app allows users to create the states / provinces in their
country. Just for clarity, we are considering only ASCII characters
here.
In the US, a user …
0
votes
0answers
2 views
turbogears request/user object in templates and request context
Hi all,
I am currently making the switch from Django to Turbogears 2.1 and am running into some problems that I could not find the answers to in the Turbogears docs. If tg developers read this, let …
0
votes
2answers
203 views
Implementing Tiny MCE As Local HTML Editor
UPDATE: There are stupid questions, and this is one of them. I didn't realize that serving JavaScript via Django was so large a question. When I've answered it, I'll post the most useful resources …
0
votes
0answers
6 views
How to customize form styled by django-uni-form?
I'm using django-uni-form to style my form using the filter my_form|as_uni_form:
<form class="uniForm" id="my_form" method="post" action="./">
<fieldset class="inlineLabels">
…
0
votes
2answers
21 views
Literals in django template language?
If I want some text to appear literally in a Django template, e.g.
{{Image.jpg|title}}
and I want that text to be output (not interpretated) in the HTML, how do I do so?
0
votes
0answers
10 views
django user auth + gwt
I have a django server app that communicates with a gwt front-end using JSON. I want to introduce user authentication to the app and have started to incorporate the framework provided by django. At …
3
votes
5answers
100 views
Django template and the locals trick
The django books gives the local trick in order to avoid to type a long list of parameters as context dictionnary http://www.djangobook.com/en/2.0/chapter04/
It recommends this to lazy programmers …
0
votes
3answers
52 views
django fails, sometimes, very erratic behavior.
I have terrible problems with django responding differently to the same requests for no apparent reason.
Sometimes i refresh and I see an error, then I refresh and its gone, sometimes the template …
