I've been playing with Mezzanine, and I got to say I'm really loving it, 
particularly after past experiences with CMS's like Wordpress. Still new to 
Django/Mezzanine overall, so it's entirely possible I'm just missing 
something, but I thought diving in with theme creation would be a fun way 
to get started. 

One of the things I loved when I started using Mezzanine was that most of 
the content is directly editable without switching back and forth to the 
admin site. Great feature that should be used more often. I'm trying to 
create and expanded jumbotron with the title and a custom caption area 
included, and would like to keep on keeping with this feature. However, it 
doesn't seem to be working right. All my other fields still work fine.

The title editable tag loads the appropriate box, but the modal seems to be 
grayed out and I can't actually click anything on it. The caption editable 
modal doesn't look right at all - the text box is all wrong.

*Page.html codechunk*
<div class="container featured-container">
{% editable page.title %}
    <h1>{{ page.title }}</h1>
    {% endeditable %}
    {% ifinstalled featured_image_caption %}
        {% include "includes/page_featured_image_text.html" %}
    {% endifinstalled %}
</div>

*page_featured_image_text.html*
{% load mezzanine_tags %}

{% if page.featured_image_caption %}
{% editable page.featured_image_caption %}
    <h3>{{ page.featured_image_caption }}</h3>
{% endeditable %}
{% endif %}

*System*
Windows 10 64x

*Python and Requirements*
Python 3.4.5

beautifulsoup4==4.4.1
biopython==1.64
bleach==1.4.2
chardet==2.3.0
Django==1.8.5
django-appconf==1.0.1
django-compressor==1.5
django-contrib-comments==1.6.1
filebrowser-safe==0.4.0
future==0.15.2
grappelli-safe==0.4.1
html5lib==0.9999999
ipython==2.3.1
matplotlib==1.4.2
Mezzanine==4.0.1
nose==1.3.4
numpy==1.9.1
oauthlib==1.0.3
pandas==0.15.1
pep8==1.6.2
Pillow==3.0.0
pyflakes==1.0.0
pytz==2015.7
requests==2.8.1
requests-oauthlib==0.5.0
scipy==0.15.0b1
six==1.10.0
South==1.0.2
sympy==0.7.6
tzlocal==1.2

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

Reply via email to