Re: One-time tasks at varying times with Uwsgi Spooler

2015-07-31 Thread Javier Guerra Giraldez
On Fri, Jul 31, 2015 at 7:26 PM, thinkwell wrote: > a_long_task.spool({'hello':'world', 'at':timedelta(hours=5)) the 'at' parameter should be _outside_ the callable dictionay, and it must be the unix timestamp, not a timedelta:

BaseListView's get_context_data is missing kwargs?

2015-07-31 Thread Ken
I created a class FilteredListView(BaseListView, FormMixin) so I can have a filter form in my list view. The form submits filters via GET. I have it working. But there is a piece of the code that I feel ought to be handled by django. In order to get the form into the context, I duplicated

One-time tasks at varying times with Uwsgi Spooler

2015-07-31 Thread thinkwell
I'm using django-uwsgi in my application, but I'm needing to run asynchronous tasks (one-time only) in my django app at varying times, based on user input. I tried passing in at "at" key to a_long_task.spool({'hello':'world',

Re: Introduction to Pulpo-Forms

2015-07-31 Thread Luciano Ferrari
Excellent Fabio!!! Thanks for the suggestion we will take that into account. Luciano El viernes, 31 de julio de 2015, 17:30:07 (UTC-3), Fabio Caritas Barrionuevo da Luz escribió: > > interesting, thanks for sharing. > > personally, I think that the organization of files on package is somewhat

Re: Introduction to Pulpo-Forms

2015-07-31 Thread Fabio Caritas Barrionuevo da Luz
interesting, thanks for sharing. personally, I think that the organization of files on package is somewhat confusing. said that, you can use a template (skeleton) as a base to create and better organize the package. I like these two for a django package:

Re: Introduction to Pulpo-Forms

2015-07-31 Thread Luciano Ferrari
Tiago, how are you? It is really nice to hear that you like our new tool. We have recently made public a demo project that is also available on GitHub - https://github.com/octobot-dev/pulpo-forms-examples . In order to access the live demo you can go to:

Re: Introduction to Pulpo-Forms

2015-07-31 Thread Tiago Almeida
Hi, Sounds cool! Do you have screenshots / demos to see before installing? Thanks, Kind regards, quinta-feira, 30 de Julho de 2015 às 22:46:12 UTC+1, Luciano Ferrari escreveu: > > Last April we finished the development of a dynamic form builder, called > pulpo-forms, to use within a Django

Re: Re. My Django Book.

2015-07-31 Thread sarfaraz ahmed
I am also looking for books which provide more of examples. The two scoops of Django is more of doing things right than tutoring as MOnobot said. This are the following things I want to learn in Django I want to learn how to manually create form rather than creating modelform. Combing forms from

Re: Re. My Django Book.

2015-07-31 Thread monoBOT
two scoops is more like ways of doing things right than really explaining or tutoring. 2015-07-31 15:33 GMT+01:00 Mark Phillips : > The django docs are excellent. However, if you are more of a book person, > then try Try Two Scoops of Django

mezzanine uploadify HTTP Error

2015-07-31 Thread Manuele Pesenti
Hi! I'm using Mezzanine for developing a web application but I got some pain with upload media library... Upload files works just fine with other table fields in my model but when I try to upload in media library the flash widget just say HTTP Error and no log can be found anywhere. Did

Re: Re. My Django Book.

2015-07-31 Thread Mark Phillips
The django docs are excellent. However, if you are more of a book person, then try Try Two Scoops of Django (http://twoscoopspress.org/) - well written and updated. Mark On Fri, Jul 31, 2015 at 6:33 AM, rmschne wrote: > I'm no way an advanced user, but I found the book

Re: Re. My Django Book.

2015-07-31 Thread rmschne
I'm no way an advanced user, but I found the book simplistic and not worth it. Django's own documentation is much better https://docs.djangoproject.com On Thursday, 30 July 2015 21:35:16 UTC+1, Steve Burrus wrote: > > * Say I was wondering if anyone else has ever read this particulkar Django

Re: Restricting CreateView

2015-07-31 Thread David
Hi James Many thanks for your reply. David -- 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.com. To post to this group,

Re: How to add fields to an existing model dynamically? Also how to modify existing field of a model dynamically?

2015-07-31 Thread Christian Ledermann
you can use a technique from the zope world known as Annotations: http://davidemoro.blogspot.co.uk/2015/02/kotti-cms-annotations-store-arbitrary-data.html which basically means that you store additional data in a json field have a look at: https://github.com/octobot-dev/pulpo-forms-django