Re: [mezzanine-users] Mezzanine reset password

2014-04-16 Thread Radomir Wojcik
Just tested & looks good! Thanks!

On Wednesday, 16 April 2014 16:27:26 UTC-4, Stephen McDonald wrote:
>
> Please check the latest unreleased version on github, I believe this is 
> resolved.
>
>
> On Thu, Apr 17, 2014 at 4:40 AM, Radomir Wojcik 
> 
> > wrote:
>
>> I think the reset password function is broken in mezzanine, probably 
>> because django now uses 64 bit, not 36 bit uidb:
>>
>> def password_reset_verify(request, uidb36=None, token=None):
>> user = authenticate(uidb36=uidb36, token=token, is_active=True)
>> if user is not None:
>> auth_login(request, user)
>> return redirect("profile_update")
>> else:
>> error(request, _("The link you clicked is no longer valid."))
>> return redirect("/")
>>
>> I remember having to change this a while ago in one of my Django apps.
>>
>>
>> So right now it seems that when you send out a password reset request you 
>> get an email with the url pointing to the site without the token and uid : 
>>
>> You're receiving this e-mail because you requested a password reset
>> for your user account at Default.
>>
>> Please go to the following page and choose a new password:
>>
>>
>>
>> http://127.0.0.1:8000
>>
>> Your username, in case you've forgotten: rad
>>
>> Thanks for using our site!
>>
>> The Default team
>>
>>
>> Out of the box I was expecting the url to be something like this:
>>
>> http://127.0.0.1:8000/accounts/password/reset/Nw-
>> 3qt-c7514bee3aa6be820746/
>>
>>
>>  -- 
>> 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-use...@googlegroups.com .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> -- 
> Stephen McDonald
> http://jupo.org 
>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [mezzanine-users] Mezzanine Twitter Feed Options

2014-04-16 Thread Radomir Wojcik
Thats what I ended up doing and it works like a charm. If it was up to me 
I'd drop the mezzanine twitter widget, it seems like more work then its 
worth, then it doesn't work, needs a cron-job to run which as you can see 
doesn't work for all users.

On Wednesday, 12 March 2014 12:52:56 UTC-4, Josh Cartmell wrote:
>
> I'm not sure of a way using the Mezzanine twitter feed (I don't know very 
> much about it) but if you use one of Twitter's widget's you definitely can, 
> https://dev.twitter.com/docs/embedded-timelines.
>
>
> On Tue, Mar 11, 2014 at 6:01 PM, Radomir Wojcik 
> 
> > wrote:
>
>> Hey All, is there a way to display images in the twitter feed, the ones 
>> that appear in the tweet itself?
>>  
>> -- 
>> 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-use...@googlegroups.com .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[mezzanine-users] Mezzanine reset password

2014-04-16 Thread Radomir Wojcik
I think the reset password function is broken in mezzanine, probably 
because django now uses 64 bit, not 36 bit uidb:

def password_reset_verify(request, uidb36=None, token=None):
user = authenticate(uidb36=uidb36, token=token, is_active=True)
if user is not None:
auth_login(request, user)
return redirect("profile_update")
else:
error(request, _("The link you clicked is no longer valid."))
return redirect("/")

I remember having to change this a while ago in one of my Django apps.


So right now it seems that when you send out a password reset request you 
get an email with the url pointing to the site without the token and uid : 

You're receiving this e-mail because you requested a password reset
for your user account at Default.

Please go to the following page and choose a new password:



http://127.0.0.1:8000

Your username, in case you've forgotten: rad

Thanks for using our site!

The Default team


Out of the box I was expecting the url to be something like this:

http://127.0.0.1:8000/accounts/password/reset/Nw-3qt-c7514bee3aa6be820746/


-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [mezzanine-users] thumbnail crop centering

2014-03-19 Thread Radomir Wojcik

>
> The default thumbnail would be fine for 95% of all cases. There should be 
> an option to re-do the thumbnail on a single image basis that lets you 
> select the cropping. It also needs a bit of fixing with the portrait vs 
> landscape photos.
>

The other thing that would be nice is to see the  a thumbnail size setting, 
didn't see anything in the docs. I find the thumbs a bit grainy for my 
liking.

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[mezzanine-users] Re: mezzanine poll_twitter

2014-03-18 Thread Radomir Wojcik
I give up, the twitter widget though from twitter is neater for me anyways, 
and no need to run any jobs, plus it has pics

-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [mezzanine-users] mezzanine poll_twitter

2014-03-18 Thread Radomir Wojcik
Yeah I can't find a description for error 82, any ideas ? Something to do 
with connectivity I suppose but I opened up everything for all protocols on 
0.0.0.0/0 for incoming and outgoing.. makes no sense.

-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [mezzanine-users] mezzanine poll_twitter

2014-03-18 Thread Radomir Wojcik

>
> OK so I connected to the database and cleared the mixed case queries and 
> updated it to the all lower case. Works in dev but in production I get an 
> error. Not very descriptive and don't see any twitter docs that can help:


Twitter query error [Search: from:the_gelatospot]: Error retrieving: 82 

-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [mezzanine-users] HOST_THEMES working sample

2014-03-18 Thread Radomir Wojcik

>
> I started fresh with new api and oauth keys. Looks like its not picking up 
> my default query from the database, queries is a blank list. 


I have this set in db:
Twitter Default Query: from:radzhome
type is set to Search

The original one is working now, still throwing errors from cached queries. 
I just changed the user name to lower case.


[, ]

User: from:the_GelatoSpot

Twitter query error [User: from:the_GelatoSpot]: Error retrieving: Not a 
valid urlencoded string.

Search: from:the_gelatospot


PS is there an easy way to clear this cache or deleting the records from 
the db is it?

Is it possible to make poll_twitter create some useful output when it 
finishes running?

-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [mezzanine-users] mezzanine poll_twitter

2014-03-18 Thread Radomir Wojcik
Does the cached query make sense? It won't update even if changed in db.

I'm trying to generate a new app and see if I can get it working

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[mezzanine-users] mezzanine poll_twitter

2014-03-18 Thread Radomir Wojcik
Poll twitter used to work for me until I changed the posts from 3 to 10, 
now it gives me this:

$ python manage.py poll_twitter

Twitter query error [User: from:the_GelatoSpot]: Error retrieving: Not a 
valid urlencoded string.


I tried to change it to 3 but still same error in prod and dev and even if 
I change the query in the database, it uses the wrong query (previously 
saved and cached somewhere).


Any ideas how to fix this? 

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[mezzanine-users] Mezzanine Twitter Feed Options

2014-03-11 Thread Radomir Wojcik
Hey All, is there a way to display images in the twitter feed, the ones 
that appear in the tweet itself?

-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [mezzanine-users] How to override tinyMCE.init() ? #noobq

2014-03-09 Thread Radomir Wojcik

>
> This seems to break the file browser pop-up, so you should copy the 
 default js file and then edit it as it contains the file browser js apart 
 from tinymce init. 

>>>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[mezzanine-users] Re: Mezzanine CKEditor skin

2014-03-05 Thread Radomir Wojcik
Would love to see ckeditor replace TinyMCE in Mezzanine.

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[mezzanine-users] Re: FileSystemEncodingChanged exceptions

2014-03-05 Thread Radomir Wojcik

>
> I ran into this problem today, and I don't use supervisor, nor do I use 
> gunicorn. Today I switched to gunicorn though cuz I couldn't figure out 
> what was going on. There were no issues in dev mode when I ran the server 
> using runserver. The issues weren't obvious even when running the uwsgi 
> server from command line, it "seemed" to work, but there was a complete 
> issue when trying to run it as a service using upstart...  I should 
> probably use the same stack everyone else is using and learn the fab file 
> that comes with.. But anyways, I switched to gunicorn and it worked as a 
> service so I thought ok problem solved. But then I got the Local Changed 
> error.  What fixed it for me was exporting all these locale variables as 
> described above using export.  Now even uwsgi is working great now.. I'm 
> still sticking to sockets but I'll use gunicorn just to be safe.  I thought 
> uWSGI was supposed to be faster thats why I was using it.  I don't know 
> much about supervisor so I use upstart, and I use sockets because its 
> slightly faster (no TCP/IP overhead).

 

export LANG=en_US.UTF-8, LC_ALL=en_US.UTF-8, LC_LANG=en_US.UTF-8

exec gunicorn -k eventlet ${DJANGO_WSGI_MODULE}:application \
  --name $NAME \
  --workers $NUM_WORKERS \
  --log-level=debug \
  --bind=unix:$SOCKFILE 

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [mezzanine-users] Re: Mezzanine Multiple Content Blocks per Page

2014-02-28 Thread Radomir Wojcik
Its not really blocks im after, just dividing content up into segments like 
in this video:

http://www.youtube.com/watch?v=1VtCSh_Z68c

How did this guy do it?

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [mezzanine-users] HOST_THEMES working sample

2014-02-27 Thread Radomir Wojcik

>
> I was already past that point, the docs help, I relied on peoples examples 
> from the mailing list. If I post a non-working example would someone be 
> able to fork it, fix it , tell me why it wasn't working? The doc here also 
> doesn't talk about base.html , Both of my themes have different base.html 
> files which is pretty much all I need for the differences in the skins.
>

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[mezzanine-users] HOST_THEMES working sample

2014-02-27 Thread Radomir Wojcik
So after working with the django sites framework, I see how easy it is to 
have multiple sites running Mezzanine in one instance. It works great if 
you have a multiple language site and don't want to use the 
internationalization built into Django and instead create a separate site 
where the skin/theme remains the same.


I would love to see a working example of HOST_THEMES though as I couldn't 
get this to work. If someone can post an easy, clonable github example 
using localhost and 127.0.0.1 to make it simple it would I think benefit 
the whole Mezzanine community!

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [mezzanine-users] Re: Mezzanine Multiple Content Blocks per Page

2014-02-27 Thread Radomir Wojcik

>
> Cool thanks!  

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[mezzanine-users] Re: Mezzanine Multiple Content Blocks per Page

2014-02-27 Thread Radomir Wojcik
Ah so its an add-on or purely custom. I thought this was a feature that is 
already built in to Mez. If it isn't, it should. So when I am editing pages 
I can edit a smaller chunk rather than the whole page.  Plus the vanilla 
editor makes a mess of the html so you easily get lost in the markup.

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[mezzanine-users] Mezzanine Multiple Content Blocks per Page

2014-02-27 Thread Radomir Wojcik
Hey guys,

I saw in a Mezzanine demo video on youtube that you can have multiple 
content segments per page. How is this achieved? I couldn't find any doc 
for it, maybe because I don't know what the feature is called.

Thanks!

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [mezzanine-users] HOST_THEMES working example?

2014-01-22 Thread Radomir Wojcik

>
> Thanks Josh! It looks interesting, I will  try it out tomorrow :)
>

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [mezzanine-users] HOST_THEMES working example?

2014-01-22 Thread Radomir Wojcik
The TemplateForHostMiddleware is there in my settings but when debugging I 
added some print statements to see if it is hit and it doesn't look like it 
is using my configuration..

I can create a compact example on bitbucket and share it, hopefully you 
guys can help me fix it and it can be used as a working example for others.

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [mezzanine-users] HOST_THEMES working example?

2014-01-22 Thread Radomir Wojcik

>
> I'm not using index.html though, I can get rid of that file I just want to 
> get base.html going, that one doesn't extend anything.
>

Couldn't find the template loader, is this it:
https://github.com/pconerly/pc/blob/master/mezzanine/template/loader.py
? 

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [mezzanine-users] HOST_THEMES working example?

2014-01-22 Thread Radomir Wojcik
Is there any way someone could create a quick example project with this 
working using localhost and 127.0.0.1 ? As simple as just changing the tag 
line in base.html for each theme would suffice.

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [mezzanine-users] HOST_THEMES working example?

2014-01-22 Thread Radomir Wojcik

>
> I am hitting with both 127.0.0.1 and localhost, the page content changes 
> correctly but not the theme.
>

I will try the debug instructions next.

I think HOST_THEMES should do what you want but since I haven't ever got it 
working I will stay out of the discussion until I fix it. I can try doing 
it with real domains but I doubt it would make a difference here. localhost 
and 127.0.0.1 are valid 

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [mezzanine-users] HOST_THEMES working example?

2014-01-22 Thread Radomir Wojcik
to be importable the name has to be valid i.e. no periods and the 
__init__.py file is required. Is there anything else I should check?

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [mezzanine-users] HOST_THEMES working example?

2014-01-22 Thread Radomir Wojcik

>
> Ok got rid of the port from the sites settings:


Domain name  Display 
name
127.0.0.1 
Defaultlocalhost
site2

 
settings.py now looks like so:


HOST_THEMES = [
('127.0.0.1', 'lzone_theme_app'),
('localhost', 'cld_theme_app'),
]


This didn't change anything though, it still loads the first theme in 
INSTALLED_APPS

INSTALLED_APPS = (
"lzone_theme_app",
"cld_theme_app",
...

)

If I comment out the first one and refresh the 2nd one is loaded.

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [mezzanine-users] Re: Templates for multi-tenancy?

2014-01-22 Thread Radomir Wojcik

>
> Stephen says it works for him, I wish there was a working example project 
> we can get our hands on!
>

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


[mezzanine-users] HOST_THEMES working example?

2014-01-22 Thread Radomir Wojcik
Themes tree of mez project:

├── lzone_theme_app

│   ├── __init__.py

│   ├── __init__.pyc

│   ├── static

│   │   ├── css

│   │   │   ├── bootstrap.css

│   │   │   ├── bootswatch.less

│   │   │   ├── custom.less

│   │   │   └── variables.less

│   │   ├── img

│   │   │   ├── favicon.ico

│   │   │   └── logo.png

│   │   └── js

│   │   └── less.js

│   └── templates

│   ├── base.html

│   ├── includes

│   │   └── footer_scripts.html

│   └── index.html

├── cld_theme_app

│   ├── __init__.py

│   ├── __init__.pyc

│   ├── static

│   │   ├── css

│   │   │   └── custom.less

│   │   └── js

│   │   └── less.js

│   └── templates

│   ├── base.html

│   ├── includes

│   │   └── footer_scripts.html

│   └── index.html

├── dev.db

├── fabfile.py

├── __init__.py

├── __init__.pyc

├── local_settings.py

├── local_settings.pyc

├── manage.py

├── mez_server.old.sh

├── mez_server.sh

├── requirements.txt

├── settings.py

├── settings.pyc

├── static


Settings.py file relevant parts:

TEMPLATE_DIRS = ()



# APPLICATIONS #




#from django.contrib.sites.models import Site

#cur_domain = Site.objects.get_current().domain

#site_obj = Site.objects.get(domain=cur_domain)

#print site_obj


INSTALLED_APPS = (

#if site

"lzone_theme_app",

"cld_theme_app",

"django.contrib.admin",

"django.contrib.auth",

"django.contrib.contenttypes",

"django.contrib.redirects",

"django.contrib.sessions",

"django.contrib.sites",

"django.contrib.sitemaps",

"django.contrib.staticfiles",

"mezzanine.boot",

"mezzanine.conf",

"mezzanine.core",

"mezzanine.generic",

"mezzanine.blog",

"mezzanine.forms",

"mezzanine.pages",

"mezzanine.galleries",

"mezzanine.twitter",

#"mezzanine.accounts",

#"mezzanine.mobile",

)

HOST_THEMES = (

('127.0.0.1:8000', 'lzone_theme_app'),

('localhost:8000', 'cld_theme_app'),

)
MIDDLEWARE_CLASSES = (
"mezzanine.core.middleware.UpdateCacheMiddleware",
"django.contrib.sessions.middleware.SessionMiddleware",
"django.middleware.locale.LocaleMiddleware",
"django.contrib.auth.middleware.AuthenticationMiddleware",
"django.middleware.common.CommonMiddleware",
"django.middleware.csrf.CsrfViewMiddleware",
"django.contrib.messages.middleware.MessageMiddleware",
"mezzanine.core.request.CurrentRequestMiddleware",
"mezzanine.core.middleware.RedirectFallbackMiddleware",
"mezzanine.core.middleware.TemplateForDeviceMiddleware",
"mezzanine.core.middleware.TemplateForHostMiddleware",
"mezzanine.core.middleware.AdminLoginInterfaceSelectorMiddleware",
"mezzanine.core.middleware.SitePermissionMiddleware",
# Uncomment the following if using any of the SSL settings:
# "mezzanine.core.middleware.SSLRedirectMiddleware",
"mezzanine.pages.middleware.PageMiddleware",
"mezzanine.core.middleware.FetchFromCacheMiddleware",
'django.middleware.clickjacking.XFrameOptionsMiddleware',
)

The page content changes but the themes do not. It always uses the first 
theme in installed_apps.  Any idea how to get this working? The doc for it 
is not all that detailed and there isn't any working examples.

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [mezzanine-users] Re: Templates for multi-tenancy?

2014-01-18 Thread Radomir Wojcik

>
> So whats the solution here? I don't have any extends in my base template, 
> my index template is not used either (home page is loaded as a cms page I 
> add in the admin) so whats the issue here? HOST_THEMES seems to do nothing 

-- 
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.
For more options, visit https://groups.google.com/groups/opt_out.