[mezzanine-users] Settings.use_editable()

2015-02-09 Thread Sreedhar Bukya
Is it compulsory to use settings.use_editable() in my view for customized admin register_setting Why do we need to flush the db cache to pick up new settings ? I think it should automatically pick up the new settings without me mentioning it in my view. Regards, Sreedhar -- You received

[mezzanine-users] Re: Adding forms to admin

2015-02-09 Thread Eduardo Rivas
It looks to me like you could use some sort of user profile. Mezzanine (Django, really) supports associating a profile model to each User object. In this profile model you can define as many fields of any kind as you like (as you'd do with any model). Mezzanine's docs contain a useful overview

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

2015-02-09 Thread Eduardo Rivas
Gotcha. Well, guess we better support hg for completeness sake (and it'll be useful for me to learn). The rollback task will work as usual for VCS users, but I don't really know what to do in case of rsync. Ideas: * No rollback support if DEPLOY_METHOD = rsync * Gzip the whole project

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

2015-02-09 Thread Eduardo Rivas
Hey everybody, quick question: is mercurial support in the fabfile very important? The new fabfile uses direct pushes to the server instead of pulls from external sites, and this is something I've only tested with git, and I was wondering if we can drop mercurial support on the fabfile

Re: [mezzanine-users] Settings.use_editable()

2015-02-09 Thread Josh Cartmell
Hi Sreedhar, if you want any changes you made to admin editable settings to be reflected in your view then you do need to call use_editable() On Mon, Feb 9, 2015 at 4:13 AM, Sreedhar Bukya sreed...@kisanhub.com wrote: Is it compulsory to use settings.use_editable() in my view for customized

Re: [mezzanine-users] How to hide product unavailable for purchase on the web page?

2015-02-09 Thread Wesley
Hi Danny, I just realized this, but thanks to you all the same. Sorry for the noise. Thanks. Wesley On 5/02/2015 4:27 PM, Wesley wrote: Hi guys, I have a question that,how to hide product with unavailable for purchase on the page? I see that, it's showing on the page, but

Re: [mezzanine-users] Settings.use_editable()

2015-02-09 Thread Sreedhar Bukya
Hi Josh , I understood that that is for getting new user settings. But can't it be automated rather I say settings.use_editable() in my view regards, Sreedhar On Monday, 9 February 2015 21:33:20 UTC+5:30, Josh Cartmell wrote: Hi Sreedhar, if you want any changes you made to admin