0
votes
2answers
24 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
1answer
25 views
Do fixtures with relationships work in app-engine-patch?
I have a fixture with multiple models that I'm using for testing. It
works for the basic models, but fails to create the entities for the
models with relationships. Is this a kno …
0
votes
3answers
84 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:
…
0
votes
1answer
34 views
How do I tell why Django is ignoring the Accept-Language header?
I have a Django app (on Google App Engine) that I wish to internationalize.
settings.py:
USE_I18N = True
LANGUAGE_CODE = 'en'
# Restrict supported languages (and JS media genera …
0
votes
1answer
52 views
Why do I have so many DeadlineExceededErrors with google-app-engine-django?
I'm using google-app-engine-django to run Django 1.1 on Google App Engine and I'm getting lots and lots of DeadlineExceededErrors, sometimes with . My entire app is quite simple, a …
0
votes
1answer
38 views
Django tagging migration to GAE
I have a Django app that use a django-tagging. I need to port this application to GAE. So, the main problem is to migrate tagging part. It has a complicated model, that should be r …
1
vote
1answer
27 views
Problem with local dumpdata (on django app-engine-patch)
I'm using django with app-engine-patch and I'm having this wierd problem running manage.py dumpdata from local store (works fine when I use the --remote option)
I'm running a loca …
0
votes
2answers
56 views
Can I use Django’s Generic Views with google-app-engine-django?
Put simply, is there a way to get generic views to work?
If I try the following in urls.py:
publisher_info = {
'queryset': Publisher.objects.all(),
}
urlpatterns = patterns( …
0
votes
1answer
27 views
How do we override the choice field display of a reference property in appengine using Django?
The default choice field display of a reference property in appengine returns the choices
as the string representation of the entire object. What is the best method to override thi …
0
votes
2answers
46 views
How do I validate a Django form containing a file on App Engine with google-app-engine-django?
I have a model and form like so:
class Image(BaseModel):
original = db.BlobProperty()
class ImageForm(ModelForm):
class Meta:
model = Image
I do the following in my vie …
0
votes
3answers
43 views
Wrapper google.appengine.ext.db.Model => django.db.models.Model
Given that gae & django persistence layers are quite similar, I'm wondering whether someone has tried creating a wrapper? Say, could be useful for utilizing django.forms.ModelF …
0
votes
1answer
38 views
problem with filtering in a referenceproperty dropdown - Django
I have the following problem. I have a contact class that different
users can tag with their own topics:
class Contact(db.Model):
contact_date = db.DateProperty(auto_now_add …
1
vote
1answer
36 views
GqlQuery OrderBy a property in a ReferenceProperty
Hi all,
I don't know how to make a GqlQuery that order by a property of the ReferenceProperty.
In this case, I want to get all the Seat but order by the id of the Room
The GqlQu …
0
votes
4answers
93 views
App Engine GQL: querying a date range
What would be the App Engine equivalent of this Django statement?
return Post.objects.get(created_at__year=bits[0],
created_at__month=bits[1],
created_at__day=bits …
1
vote
2answers
79 views
DateFormat in Django and App Engine?
I have a slight issue with dates in Django and Google App Engine:
I have the following class because I want date input in the form of DD/MM/YY:
class MyForm(ModelForm):
my …
