Questions tagged [mezzanine]

Mezzanine is an open source content management platform built using the Django framework.

Mezzanine is an open source content management platform built using the Django framework. It features hierarchical pages, inline editing, scheduled publishing, blog importing, and more.

For more information visit the Mezzanine project website.

465 questions
0
votes
1 answer

How to get django_hitcount app working with Mezzanine blog

Been trying for several hours now. I set up according to instructions but I can't get it to count hits on a blog post. /blog/blog_post_detail.html {% load .. .. .. hitcount_tags %} . . . . {% block blog_post_detail_content %}
fred
  • 1,146
  • 11
  • 16
0
votes
1 answer

Easier image uploading in Mezzanine?

I installed Mezzanine engine, and it works nicely, the inline edit is great, but there's one issue: image uploading. To do this you have to open 3 windows: open media library choose upload image browse image on hard drive click upload close upload…
culebrón
  • 34,265
  • 20
  • 72
  • 110
0
votes
2 answers

Error during template rendering in mezzanine?

I am new to mezzanine. I have got the reverse match error from package.Here Reverse for 'admin_keywords_submit' with arguments '()' and keyword arguments '{}' not found. In template /mezzanine/mezzanine/core/templates/admin/base_site.html, error at…
dhana
  • 6,487
  • 4
  • 40
  • 63
0
votes
1 answer

Conflict between 'editable' and Mezzanine form in Django/Mezzanine template

I'm getting a conflict between editable fields and a mezzanine form (i.e. a standard form created in the admin). When I make the page title 'editable', the form at the bottom renders a field to edit the title instead of the actual form. As the…
Nicole Harris
  • 850
  • 1
  • 13
  • 24
0
votes
1 answer

Pagination in django mezzanine

I can't figure out how to use mezzanine pagination for my custom models. The docs say: mezzanine.core.templatetags.mezzanine_tags.pagination_for(parser, token) Include the pagination template and data for persisting querystring in pagination…
Asterisk
  • 3,534
  • 2
  • 34
  • 53
0
votes
1 answer

Login bug in Mezzanine site

we have just recently started on a project using the mezzanine cms platform. we were trying to implement the authentication/login feature but already encountered a problem: http://usbong.pythonanywhere.com when you click the "Login" button (the one…
Bijou Lee
  • 1
  • 1
0
votes
1 answer

Mezzanine Forms Dropdown

I'm trying out Django/Mezzanine and if I have a custom user profile as such: class UserProfile(models.Model): user = models.OneToOneField("auth.User") street_address1 = models.CharField(max_length=100) street_address2 =…
mrkre
  • 1,548
  • 15
  • 43
0
votes
1 answer

Subclassing LoginForm

I am trying to subclass the loginform to add an extra field per login but cannot get it to display. I am using mezzanine for the project. Here is what I have for my forms.py: from mezzanine.accounts.forms import LoginForm from django import…
Tom
  • 251
  • 1
  • 6
  • 16
0
votes
1 answer

Error installing Mezzanine cms on Windows 7

I am trying to install mezzanine on windows 7 64 bit. I have installed pil for python 2.7 64 bit from here. I recreated my virtualenv, but i still get this error i know that error is caused by pil but i installed it and it didn't fix it. I have a…
Lynob
  • 5,059
  • 15
  • 64
  • 114
0
votes
1 answer

Get url configuration in django 404 pages when Mezzanine is installed

I'm working with mezzanine for a django project, and I can't figure out how to turn back on the DEBUG=True url configuration output that django usually produces on 404 pages. With mezzanine installed, even with DEBUG=True, all I ever get is a…
Ted
  • 12,122
  • 4
  • 31
  • 39
0
votes
1 answer

Django Admin Tables Functionality

Is there anyway to add the functionality of Datatables to the django admin interface. I'm using Django + Mezzanine and for my project we need the ability to sort by every column, have pagination, search, etc.
Matt Camilli
  • 664
  • 5
  • 8
0
votes
2 answers

Add a field to Mezzanine blogpost

I am using Mezzanine for a project. I need to add a extra field to Mezzanine blogpost. I notice using EXTRA_MODEL_FIELDS can do it, but it looks complex. I also try copy the blog folder from the site-package to my project path, and then modify the…
Mingo
  • 1,613
  • 2
  • 16
  • 20
0
votes
1 answer

Mezzanine search engine

I use Mezzanine CMS. It has {% search_form "app.model" %} template tag, it works fine, but it case-sensitive search. How can I make case-insensitive search?
lmasikl
  • 193
  • 2
  • 16
0
votes
5 answers

password encryption on python?

I just create a new aplication in python for registration. I save all the fields in database and user created successfully but the password is save same as it is we filled at the time of registration. How do I encrypt or use default functonality of…
Rahul Singla
  • 81
  • 1
  • 2
  • 8
0
votes
1 answer

Customize admin.py

I am using mezzanine + cartridge to make a shopping cart app.I want to call a customize function whenever admin change the order status from unprocessed to processed. The customize function may includes sending mail, add track order no. etc. But I…
Inforian
  • 1,716
  • 5
  • 21
  • 42
1 2 3
30
31