Added possibility to hide recent actions

This commit is contained in:
Fabio Caccamo
2017-05-24 11:57:08 +02:00
parent 2bc5c9f9ce
commit 2301eedc8b
5 changed files with 35 additions and 0 deletions
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.1 on 2017-05-23 15:37
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('admin_interface', '0004_rename_title_color'),
]
operations = [
migrations.AddField(
model_name='theme',
name='recent_actions_visible',
field=models.BooleanField(default=True, verbose_name='visible'),
),
]