Simon Barnett
Simon Barnett
Do you have any update on this issue? The only time I'm seeing it is when my site hits an HTTP 500 error - the context doesn't contain the key...
@rossp I can certainly try. I don't 100% understand what the code in this area is trying to achieve but would it make sense to check for the presence of...
@rossp Also, the use of `first()` in that template tag prevents this app from supporting Django 1.5. Sadly, that's the version I'm having to use on this project for the...
OK, I've created a pull request - I've never actually done this before so please forgive me if there's something I've missed or done wrong!
Just a quick followup on this. In order to be able to use the API key to filter objects on a particular model, I think I'm right in saying that,...
I'm not sure what the ideal way to go is, but for the time being, I've created my own ProjectAPIKeyManager with a single method which I can pass a request...
How about something like this:- ``` def render_activity(context, activity, template_prefix='', missing_data_policy=LOG): if hasattr(activity, 'enriched') and not activity.enriched: handle_not_enriched_data(activity, missing_data_policy) return '' if template_prefix != '': template_prefix = '%s_' % template_prefix...
This is almost exactly what I need for my app. I'm trying to replicate the method that heroku uses on their site. I am aiming for 2 domains - example.com...
Thanks @verstoff - I used the runtime config to do that in the end, so thanks for that!
So I can't jump straight from 0.8.5 (my current version) to 1.1.1 ? That seems a little odd to me. I'm not that sure how Django deals with the process...