0
votes
3answers
31 views
Calling small app in template : Django
Lets say I have a website with a small application that lists the 10 newest members, or something dynamic like that. I want this to view on every page, perhaps in a sidebar. How wo …
2
votes
1answer
16 views
Django - how to determine if model class is abstract
If a django model is made abstract, like below, is there a way to inspect the class to determine that it is abstract?
class MyModel(models.Model):
class Meta:
abstract = Tru …
1
vote
4answers
79 views
How to resize just uploaded image?
In VIEW I want to resize uploaded image and save 2 copies of it in model real and changed
2
votes
1answer
59 views
General Purpose Progressbar in Django
I want to make a little web-frontend for copying (rsync) and encoding (ffmpeg) files for my Server using Django.
And I want to keep track of the progress of the processes.
I saw a …
-1
votes
2answers
34 views
Django questions: setting the port number and the using an existing database
I have a mini project that I'd like to start on port 2000. How do I do this?
Also, how would I set up the project with an existing database?
What Django books did you find helpfu …
2
votes
0answers
45 views
Locking in Python/Django over NFS
I'm occasionally getting the following exception when running the code below:
Traceback (most recent call last):
File "/home/user/locktest.py", line 9, in <module>
loc …
0
votes
2answers
55 views
How to get django and jquery .ajax to play nice - not triggering success
At this all evening and can't see what I'm missing:
JS:
$(document).ready(function() {
$("#form").submit(function () {
var txt = $('textarea[name=text]').val();
…
1
vote
2answers
26 views
How would you share a theme between a Django app and a Wordpress blog?
Trying to keep a consistent look & feel between a django site and a wordpress blog is turning into somewhat of a pain and I'm wondering if there's a way to set it up so that st …
2
votes
0answers
45 views
About grouping sql queries in django…
Hello! I found an ambiguous place in one django-based application that I use in my project, please look at that:
if not request.method == 'POST' or not request.POST.get('openid'): …
0
votes
1answer
17 views
Django Admin - add collapse to a fieldset, but have it start expanded
Is there a way to make a fieldset collapsible, but start expanded? When you add collapse to the fieldset classes, it gets the functionality but starts collapsed. I've taken a loo …
0
votes
1answer
40 views
Different response by screen solutions using Django and jQuery
In a thumbnail website, if I want to display 100x100 thumbs on screnn resolutions lower than 1280x1024 while display 150x150 thumbs for screens higher than 1280x1024, is the follow …
2
votes
1answer
20 views
Redirect realtime common line output to Django HttpResponse
In a long run command line execution, like uncompressing a large .zip archive, how to redirect the realtime output of unzip command to browser via Django's HttpResponse?
EDIT:
Ac …
0
votes
1answer
22 views
django.utils.encoding.DjangoUnicodeDecodeError
I got the following error when tried to add an entry to a Django model via generic relations.
django.utils.encoding.DjangoUnicodeDecodeError: 'utf8' codec can't decode byte 0xb8 i …
0
votes
1answer
18 views
Django-Piston: ManyToManyField handling?
Bit of a lazyweb question here: anybody know how django-piston handles writes (create/update) to ManyToMany fields?
0
votes
1answer
29 views
how to insert a infomation on a table in Django
This is my form on models.py
class ItemForm(forms.Form):
itemname = forms.CharField(max_length=100)
itemwording = forms.CharField(max_length=100)
notes = forms.CharFi …
