[mezzanine-users] Re: admin.StackedInline not working in mezzanine

2015-05-31 Thread Ernesto Palafox
abularDynamicInlineAdmin or > mezzanine.core.admin.StackedDynamicInlineAdmin. > > > > Le vendredi 29 mai 2015 09:54:28 UTC+2, Ernesto Palafox a écrit : >> >> Hi to all! >> >> I am working on a slider, i try it in django 1.7 and it works, but when i >> install it to mezzanine(Mezzanine 3.1.10) th

[mezzanine-users] admin.StackedInline not working in mezzanine

2015-05-29 Thread Ernesto Palafox
Hi to all! I am working on a slider, i try it in django 1.7 and it works, but when i install it to mezzanine(Mezzanine 3.1.10) the StackedInline doesnt work. It doesnt show any information about my Slide model, does nothing when i click on it. (Image) here is my admin.py: # -*- encoding: utf-

[mezzanine-users] Can't search trough all models

2014-11-24 Thread Ernesto Palafox
Hi Guys, i hope someone can help me figuring out what am i doing wrong, or where is the problem. I having trouble with the search_form tag, i have read the documentation, search trough the mailimg list and try to understand this commit https://github.com/stephenmcd/mezzanine/commit/d67d4a132cb

[mezzanine-users] Rendering fields manually Mezzanine Forms

2014-11-10 Thread Ernesto Palafox
Hi! I am working with mezzanine forms, and it works like charm, but i was wondering if i could render manually the fields on the template. I just want to put some headers between some fields, and make others two or three fields per row. ¿is it possible to access manually the fields instead of

[mezzanine-users] Re: Can´t make model searchable

2014-10-29 Thread Ernesto Palafox
This is great guys! as Josh said this makes the search more flexible. Thank you Stephen! -- 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+unsu

Re: [mezzanine-users] Can´t make model searchable

2014-10-27 Thread Ernesto Palafox
ou'll probably need to implement some functionality in one of the > model's "save" methods in order to populate some data in the other. > > Good luck! > > On Tue, Oct 28, 2014 at 5:37 AM, Ernesto Palafox > wrote: > >> Hi all, im new to mezzanine and I t

[mezzanine-users] Can´t make model searchable

2014-10-27 Thread Ernesto Palafox
Hi all, im new to mezzanine and I think its awesome. I am trying to follow the documentation http://mezzanine.jupo.org/docs/search-engine.html to made searchable my custon contentype My models.py looks more or less like this: class Galeria(Page): pass class Item(models.Model): gallery = mode