[mezzanine-users] Is it possible to integrate django-allauth in mezzanine/cartridge ?

2015-12-12 Thread RAUSHAN RAJ
I want to integrate google/facebook login in my ecommerce site. -- 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.

[mezzanine-users] Why slug regex use by Mezzanine is .* ?

2015-12-12 Thread sonu kumar
I have found every slug in Mezzanine uses * .**. Just curious why we have this instead of that we could have *[-a-zA-Z0-9]+ or [-\w]+* which will match all required slugs as per my knowledge. .* leads a problem as* /users/(?P.*)/ *this will pass URLs like* users/Alice/hack. *This can be

Re: [mezzanine-users] Why slug regex use by Mezzanine is .* ?

2015-12-12 Thread Eduardo Rivas
Could you elaborate? The only capture group in your example is the username. By inserting a slash, no username would match and the standard 404 page will be displayed. -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from

[mezzanine-users] Re: Frontend CMS

2015-12-12 Thread wh4n
I think you missunderstood me. I want to put for example the section "Blogposts" to the front end so that the admin user can post blog posts on the front end without going to the backend. Another example would be that the user want to change specific settings to the blog. I created a button on

Re: [mezzanine-users] Re: Frontend CMS

2015-12-12 Thread Eduardo Rivas
You would basically need to create custom urls, views, and templates to edit your site content. Django provides you with model forms, inlines and other tools to do so. You also have generic views to create, edit, and delete model instances. You will find all that in the Django docs and other

[mezzanine-users] Theme Mezzanine

2015-12-12 Thread allexxiaa
Hi, Tutorial: http://bitofpixels.com/blog/mezzatheming-creating-mezzanine-themes-part-1-basehtml/ *python manage.py collecttemplates -t pages/menus/dropdown.html* 'Copied 0 templates' no templates is actually copied, any idea why? -- You received this message because you are subscribed to