0
votes
2answers
31 views
django template url function not matching in app
I have a django project set up with an app called pub. I'm trying to set it up so that I can include urls.py from each app (there will be more as I go) in the top-level urls.py. …
0
votes
2answers
22 views
django unprintable templatesyntaxerror object caused by urlconf?
I'm trying to get a django project set up, and I seem to be having trouble with my urlconf. I'm not sure what the deal is, and the error below isn't entirely helpful to me. I don …
0
votes
2answers
28 views
GAE Image Posting to Datastore through Django Form
I'm working on a little side project that involves posting an avatar to a users profile page, seems straight forward enough. I'm following the instructions from the "Using the Imag …
1
vote
1answer
30 views
How do I unit test Django views on the Google App Engine?
I am struggling to run unit tests using the Django Client class on the Google App Engine. I downloaded GAEUnit (v2.0a for Django) and I am trying to use that as my testing framewor …
1
vote
0answers
17 views
In Django (on Google App Engine), should I call main.py when running Unit Tests?
I have a Django application on the Google App Engine, and I would like to start writing unit tests. But I am not sure how to set-up my tests.
When I run my tests, I get the follow …
2
votes
3answers
130 views
Using keys with spaces
Is there a way to do something like the following in Django templates?
{% for hop in hops%}
<tr>
<td>{{ hop.name }}</td>
<td>{{ hop.ma …
0
votes
3answers
79 views
sorl.thumbnail : ‘thumbnail’ is not a valid tag library ?
I am trying to install sorl.thumbnail but am getting the following error message:
'thumbnail' is not a valid tag library: Could not load template library from django.templatetags. …
0
votes
1answer
13 views
GAE Django template and swedish characters
Hi,
I'm trying to render templates of an html-page that contains swedish characters "åäö" but when it renders in the web browser it ends up with "�". The page renders in UTF-8.
I …
1
vote
2answers
58 views
Diference between appengine_django BaseModel and db.Model
I'm using the Google App Engine helper for Django. This helper includes the following lines in its template:
from appengine_django.models import BaseModel
from google.appengine.ex …
2
votes
3answers
69 views
Complex Queries using GAE datastore
Hi. I am in the early stages of developing a sports statistics website (ultimate frisbee) and would like to know your opinions if Google App Engine is right for me.
I am writing i …
1
vote
1answer
48 views
How do I import the render_to_response method from Django 1.1 inside of Google App Engine?
I'm a Python newbie, so I'm sure this is easy. Here's the code in my main.py:
import os
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
from google.appengine.dist import use_l …
0
votes
2answers
65 views
how should i store and retrieve images with django on appengine?
I'm using appengine patch with django 1.1 (came with appengine patch).
I have a page with multiple columns and multiple files.
In the admin I want to be able to upload an image and …
0
votes
2answers
33 views
How do I do a if a in list_b test in Django 0.96 Templates?
How do I do a if a in list_b test in Django 0.96 Templates?
I'm having a list of checkboxes and a variable containing a list of corresponding values from a previous submit of the …
0
votes
3answers
159 views
Storing Images on App Engine using Django
I'm trying to upload and save a resized image in a db.BlobProperty field on Google App Engine using Django.
the relevant part of my view that process the request looks like this:
…
1
vote
1answer
79 views
Ecommerce with django in google app engine
Is there any module available for googlecheckout/paypal in django on google app engine? are there any example apps which are doing this?
