Minor addition

This commit is contained in:
Iacopo Spalletti 2016-05-13 08:54:08 +02:00
parent 5a8f9fdf03
commit 429d6bd8f2
No known key found for this signature in database
GPG key ID: BDCBC2EB289F60C6
2 changed files with 5 additions and 3 deletions

View file

@ -126,9 +126,12 @@ class BlogNavModifier(Modifier):
namespace = resolve(request.path).namespace
config = app.get_config(namespace)
try:
if config and config.menu_structure != MENU_TYPE_CATEGORIES:
if config and (
not isinstance(config, BlogConfig) or
config.menu_structure != MENU_TYPE_CATEGORIES
):
return nodes
except AttributeError:
except AttributeError: # pragma: no cover
# in case `menu_structure` is not present in config
return nodes
if post_cut:

View file

@ -9,7 +9,6 @@ from .models import CustomUser
class CustomUserAdmin(UserAdmin):
model = CustomUser
fieldsets = (
(None, {'fields': ('username', 'password')}),
(_('Personal info'), {'fields': ('first_name', 'last_name', 'email')}),