[mezzanine-users] Re: Bizarre issue- Dumping data from one server to another doesn't transfer keywords properly

2014-02-14 Thread Jackson Hong
This was exactly the issue. Thank you so much for this tip. Cheers. On Tuesday, February 11, 2014 6:21:06 PM UTC-5, Justin McKeon wrote: Keywords have a foreign key to ContentType which can have different primary keys between databases.

[mezzanine-users] Form that can be filled only once

2014-02-14 Thread Giovanni Pederiva
hi, i'm trying to make a website for an association, we need to have some people apply for a summer school. i'd like to create a form with all the data i need to collect from them, but i want also to allow each user to submit that form only once. is there a way to do this? thanks in advance

Re: [mezzanine-users] Form that can be filled only once

2014-02-14 Thread Sam Kingston
Further to what Josh has said, since forms are a core part of Django, have a look through the excellent docs they have: https://docs.djangoproject.com/en/1.6/topics/forms/ The if user has submitted, reject bit is perfect for a form validator. Good luck On Saturday, 15 February 2014 08:22:57

Re: [mezzanine-users] cartridge - multiple select for product category

2014-02-14 Thread Andrey M
Hi Josh, The idea is the following. I'd like to create two main categories with sub categories like Category1 C1.1 C1.2 Category2 C2.1 C2.2 C2.3 So, an user can select at the same time, for example (C1.1 and C2.2) or (Category1 and C2.3) and etc. However the user should not

[mezzanine-users] How to split menu for categories (first level in top, second and other levels in left menu)

2014-02-14 Thread Andrey M
Hi All, Could you please advise if it is possible to 'split' menu for Product categories? I'd like to show first level categories in top menu but second (and all other) levels are only in left menu. So when an user selects category in top level menu, only subcategories related to this category

[mezzanine-users] add group item (without dedicated page) to page manu

2014-02-14 Thread Andrey M
Hi All, Could you please advise if it is possible to add some 'grouping' elements (configurable in admin) to categories menu which doesn't have a page inself. So only grouping menu element if required like the following and without overriding core functionality. Cat1 Group1 (no page, no

Re: [mezzanine-users] cartridge - multiple select for product category

2014-02-14 Thread Josh Cartmell
You could probably do that by creating a page processor for cateogires that checked for get paramters (the categories that are selected) and added the right products into the context based on those selections. On Fri, Feb 14, 2014 at 2:56 PM, Andrey M andrey.s.mas...@gmail.com wrote: Hi Josh,