Re: [mezzanine-users] Where do custom templates go in 4.0?

2015-08-10 Thread David Hoese
Nevermind, I got a little ahead of myself. Obviously, that works for templates, but if I want to do CSS then I'll need to put it in an actual application so the "theme" app is likely the best solution. On Monday, August 10, 2015 at 3:34:30 PM UTC-5, David Hoese wrote: > > Oh duh, I moved TEMPLAT

Re: [mezzanine-users] Where do custom templates go in 4.0?

2015-08-10 Thread David Hoese
Oh duh, I moved TEMPLATE_DIRS to my local_settings.py and didn't see it at first. That makes sense why this wasn't working now. Thanks. On Monday, August 10, 2015 at 3:18:06 PM UTC-5, David Hoese wrote: > > Hi Eduardo, > > I think that makes sense. I haven't done a lot of custom templating and

Re: [mezzanine-users] Where do custom templates go in 4.0?

2015-08-10 Thread David Hoese
Hi Eduardo, I think that makes sense. I haven't done a lot of custom templating and CSS in my project so far, but from what I saw in Josh's blog post it made it look like the project application should be treated like an application, but with settings.py and other project level files. I did

Re: [mezzanine-users] Where do custom templates go in 4.0?

2015-08-10 Thread Eduardo Rivas
You have two options: - Use the the top-level "templates" directory defined in settings.py https://github.com/stephenmcd/mezzanine/blob/master/mezzanine/project_template/project_name/settings.py#L199. You can also change this to whatever path you like. - You can create a "theme" app and put t

[mezzanine-users] Where do custom templates go in 4.0?

2015-08-10 Thread David Hoese
Where is the preferred location to put custom templates in Mezzanine 4.x? Josh's blog post makes it look like they should go in the project application, but they don't seem to be recognized there. If I link them in the project root then things seem to work. Suggestions? Thanks. -- You received

[mezzanine-users] Re: adding SEARCH_MODEL_CHOICES seems to have broken PAGE_MENU_TEMPLATES

2015-08-10 Thread Joseph Mohan
I've tried SEARCH_MODEL_CHOICES = [] and assigned a fresh db as well. On Monday, 10 August 2015 17:08:29 UTC+1, Joseph Mohan wrote: > > Django.1.6.11 and I think I'm running Mezzanine3.1.10 > > Really strange, I tried adding some fields to SEARCH_MODEL_CHOICES, didn't > get the result i was looki

[mezzanine-users] adding SEARCH_MODEL_CHOICES seems to have broken PAGE_MENU_TEMPLATES

2015-08-10 Thread Joseph Mohan
Django.1.6.11 and I think I'm running Mezzanine3.1.10 Really strange, I tried adding some fields to SEARCH_MODEL_CHOICES, didn't get the result i was looking for so then commented the section out. Now for some reason my custom pages aren't showing up their respective menus. eg. {% if page.in_men

Re: [mezzanine-users] Adding a page break

2015-08-10 Thread Ken Bolton
Mezzanine remains Just Another Django Application. If it does not work, a bug report should be filed! -ken On Mon, Aug 10, 2015 at 11:28 AM, ac11 wrote: > Thanks Ken. Any idea if this works well with Mezzanine? > > On Monday, August 10, 2015 at 7:31:26 AM UTC-4, Kenneth Bolton wrote: >> >> Hi!

Re: [mezzanine-users] Adding a page break

2015-08-10 Thread ac11
Thanks Ken. Any idea if this works well with Mezzanine? On Monday, August 10, 2015 at 7:31:26 AM UTC-4, Kenneth Bolton wrote: > > Hi! Until Django 1.8, django.contrib.formtools included the form wizard. > This was split out into a separate project at > https://django-formtools.readthedocs.org/e

Re: [mezzanine-users] Adding a page break

2015-08-10 Thread Ken Bolton
Hi! Until Django 1.8, django.contrib.formtools included the form wizard. This was split out into a separate project at https://django-formtools.readthedocs.org/en/latest/ and should do what you need. hth. -ken On Mon, Aug 10, 2015 at 6:48 AM, ac11 wrote: > Hi, > > I am very new to django and

[mezzanine-users] Adding a page break

2015-08-10 Thread ac11
Hi, I am very new to django and mezzanine. So my question might be pretty simple to implement but I am not sure how. I am building a survey tool. I created a new Page and added models (Question) to it. The survey admin can create multiple questions in the same page. I want each of these questi

[mezzanine-users] Partitioned media library with a common folder

2015-08-10 Thread Josh B
Hi Eduardo, I have symlinked folders before and it works really well. The only issue will be if a user deletes a shared image. -- 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,

[mezzanine-users] Re: Recommended way to add news section

2015-08-10 Thread Ilian Iliev
Thanks a lot, my problem is that I wanted the parent page of the "News" section to be in the navigation but I will try to see if I can do it with the blog. On Wednesday, August 5, 2015 at 11:35:33 AM UTC+2, steve@gmail.com wrote: > > You could replicate the blogs application from Mezzanin