Re: [mezzanine-users] database table for app not found

2017-09-15 Thread Bernie Caessens
Hi Ken, Thanks for your answer. I did indeed forget to migrate the database to use my user model. Once I ran: python manage.py makemigrations myapp python manage.py migrate Everything was working fine! Maybe a single line in the docs like (don't forget to migrate your database + with your

[mezzanine-users] How to create a form for blog posts that accepts image uploads

2017-09-15 Thread Ryan M
I have been migrating my existing blog to Mezzanine. It has been a great experience so far. Mezzanine has been able to accommodate all of the features on my "wish list" so far with the exception of the few "hiccups" below. Fortunately, I am positive that these outstanding problems can be

Re: [mezzanine-users] Does Orderable / Sortable Work on Editable Template Tag?

2017-09-15 Thread Eduardo Rivas
I don't think so. The Orderable abstract model is designed for inlines only, and the {% editable %} template tag doesn't support that. On 2017-09-15 9:55 AM, Matt Mansour wrote: Hi All - I am looking to create a page of images that are both sortable and in a grid format - instead of each

Re: [mezzanine-users] How to create a form for blog posts that accepts image uploads

2017-09-15 Thread Melvyn Sopacua
If you're failry strong in python, but not Django and are working with Mezzanine, then you do need to do some digging into Django. And here's the main pointers: - Models are classes that represent the database structure. They can be extended, they can be marked abstract, but the primary thing to

Re: [mezzanine-users] Re: How can I do to create/edit as when using PageAdmin and list as when not using PageAdmin?

2017-09-15 Thread Joseph Mohan
Awesome! That's a great talk Edwardo and a brilliant resource Roger. I've been using Mezzanine for 2/3 years and only been coding for a few years longer than that, so getting my head round Mezzanine has been an excellent learning curve with code (and git). Why don't you guys have this

Re: [mezzanine-users] Does Orderable / Sortable Work on Editable Template Tag?

2017-09-15 Thread Matt Mansour
Thanks for the quick reply. My objective was the lazy approach and your quick reply was faster than me trying it. I'll continue using jQuery ui / sortable. I wish creating a grid view for inlines was a relatively easy job. But I don't have time for tackle that one. I am sure some would find a

Re: [mezzanine-users] Does Orderable / Sortable Work on Editable Template Tag?

2017-09-15 Thread Matt Mansour
In this case I have to find a solution. The editors are not happy. Makes sense. These are galleries of homes and locations. Some locations have 100 + photos. Editors need to be able to quickly order and group a gallery however they wish. They have a few thousand galleries to create. A

Re: [mezzanine-users] Does Orderable / Sortable Work on Editable Template Tag?

2017-09-15 Thread Matt Mansour
That said, just want to put out there that Mezzanine has really helped a lot for this project. For example, another requirement is deep categorization. It's nice to see how Mezzanine handles that easily without tons of database queries. Overall loving Mezzanine. This is just one of those

Re: [mezzanine-users] How to create a form for blog posts that accepts image uploads

2017-09-15 Thread Ryan M
Melvyn, This does help. Your input is very much appreciated! Since this is a "night-time" project for me, I will need to review my code within the context of the "widget" info you provided later tonight. I especially look forward into reading about "filebrowser_safe", as that might be the

[mezzanine-users] Re: How can I do to create/edit as when using PageAdmin and list as when not using PageAdmin?

2017-09-15 Thread Rainell Dilou Gómez
Hi, Roger. I am very grateful for your kindness, also for understanding what it feels like to be a beginner. The example project you have published will be very useful for me, I greatly appreciate it. I have seen how the many to many relationship is established in the admin.py file of the Blog

Re: [mezzanine-users] How to create a form for blog posts that accepts image uploads

2017-09-15 Thread Melvyn Sopacua
I don't know what the two columns are for. Generally if you need to do more with a model, you should extend the model. But if you only need more fields, there's also EXTRA_MODEL_FIELDS in the settings that does all the work for you. It is explained in the comments of the settings file. As far as

Re: [mezzanine-users] Does Orderable / Sortable Work on Editable Template Tag?

2017-09-15 Thread Eduardo Rivas
Cool! Glad you've enjoyed it so far. Hope it all works out. On Sep 15, 2017 10:30 AM, "Matt Mansour" wrote: > That said, just want to put out there that Mezzanine has really helped a > lot for this project. For example, another requirement is deep > categorization. It's