Re: format date output in mail form

2009-12-21 Thread Guilherme Cavalcanti
ext': self.text, 'aviseme_link': "#", 'media_url': settings.MEDIA_URL }) rendered = template.render(ctx) On Dec 21, 10:22 am, Guilherme Cavalcanti <guiocavalca...@gmail.com> wrote: > Hello, > > can you show how date is being printed? Maybe if you try to create an > &

Re: format date output in mail form

2009-12-21 Thread Guilherme Cavalcanti
Hello, can you show how date is being printed? Maybe if you try to create an "template" using {{ date|date:"j N \d\e Y" }} (or what else format you want) and just call render passing an context with the datetime object. On Dec 21, 9:26 am, rvandam wrote: > I found some

Re: Cron vs event triggered action

2009-12-14 Thread Guilherme Cavalcanti
sets up some configs. On Dec 14, 7:23 pm, Javier Guerra <jav...@guerrag.com> wrote: > On Mon, Dec 14, 2009 at 5:12 PM, Guilherme Cavalcanti > > <guiocavalca...@gmail.com> wrote: > > If are you going to choose A, take a look on Advanced Python Schedule > > (

Re: Cron vs event triggered action

2009-12-14 Thread Guilherme Cavalcanti
els and perform actions using the simplicity of the django > webframework. There I just check the entries on my cron-db table, and > if its time I perform the corresponding action (maybe having a type > field defining actions like sendmail or delete_account). > > On 14 dic, 12:30, G

Re: Cron vs event triggered action

2009-12-14 Thread Guilherme Cavalcanti
Tim, recently I've used the solution A too. Take a look on these plugins: http://code.google.com/p/django-cron/ http://code.google.com/p/django-jits/ http://github.com/jtauber/django-notification/blob/master/docs/usage.txt Pay attention specially on django-jits, it uses a little different