Brevity on Kickstarter - Check it out!

2016-05-05 Thread Val Neekman
, or anything else. Is it perfect? No Is it complete? Not yet Does it scale? Yes, horizontal scaling is possible via stateless configuration (assets on S3) Is there a demo? Yes: simplyfound.com Is it Django based? Of course :) Constructive feedback is always appreciated. Cheers, Val http://kck.st/2

What is the best way to dynamically build and insert templatetags from data?

2015-08-29 Thread Val Neekman
{'code': 401, 'says': 'Bar here'} Please note that the data is made up to help with the question. Django 1.8+ answers would be great. Thanks, Val -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop

Joining Geo Tables with non-Geo Tables

2013-04-19 Thread Val Neekman
you go about avoiding joins with the User table? Thanks, Val -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.co

Re: Two Formset on the same page

2009-10-01 Thread Val Makykh
: File "C:\Python26\lib\site-packages\django\core\handlers\base.py" in get_response 92. response = callback(request, *callback_args, **callback_kwargs) File "C:\Users\Val Malykh\Django-1.1\django\bin\mysite\..\mysite \getindex\views.py" in results 83

Two Formset on the same page

2009-10-01 Thread Val Makykh
Hello all. I use Django 1.1. I try to make two formsets on the same page. But when I'm trying to use the data from POST, I have such problem: from POST each formset takes only first form with value. Where have I mistaken? Sourse: In views.py: __ def results(request,

Re: Re-rendering same page

2007-06-27 Thread Val
instantly, and I was wondering why this could be. On Jun 27, 2:06 pm, "Jeremy Dunck" <[EMAIL PROTECTED]> wrote: > On 6/27/07, Val <[EMAIL PROTECTED]> wrote: > ... > > >change a boolean > > value > > A boolean value where, in what context, for wh

Re-rendering same page

2007-06-27 Thread Val
I am having difficulty with re-rendering the same template. My site is designed with links which, when clicked, will change a boolean value (this is done via a query string), then re-render the page they were clicked from. The problem is that when the page is rendered, it takes multiple

Explain the template for serving static files?

2007-05-21 Thread Val
DEFAULT_DIRECTORY_INDEX_TEMPLATE = """ http://www.w3.org/1999/xhtml; xml:lang="en" lang="en"> Index of {{ directory|escape }} Index of {{ directory|escape }} {% for f in file_list %} {{ f|escape }} {% endfor %} """ What exactly