Re: [mezzanine-users] Alternate Fabfile for deploying to VPS

2015-02-01 Thread Eduardo Rivas
Got it. I'll get to it soon. -- You received this message because you are subscribed to the Google Groups Mezzanine Users group. To unsubscribe from this group and stop receiving emails from it, send an email to mezzanine-users+unsubscr...@googlegroups.com. For more options, visit

Re: [mezzanine-users] Re: Ensure unqiue title field on model inherited from Displayable

2015-02-01 Thread Graham
Hi Eduardo Looking at https://docs.djangoproject.com/en/dev/ref/models/instances/#what-happens-when-you-save and other posts on this issue I think that it has to happen *_/before/_* the pre-save... I just wondered if this problem had a Mezzanine centric solution? g On 02/02/15 16:43, Eduardo

Re: [mezzanine-users] Re: Ensure unqiue title field on model inherited from Displayable

2015-02-01 Thread Eduardo Rivas
Hi Graham. Why do you say this needs to happen before pre-save? The idea of that signal is that it let's you do anything you wish before inserting data into the DB. If you found out that the Title is not unique, you can raise the appropriate errors and abort the save until the user corrects the