From 768f3532f7882d41cddb85f8d5f76fe7fb62b115 Mon Sep 17 00:00:00 2001 From: PCoder Date: Thu, 27 Sep 2018 22:09:11 +0200 Subject: [PATCH] Add default_selected_template field to DCLCalculatorPluginModel --- datacenterlight/cms_models.py | 7 +++++++ ...orpluginmodel_default_selected_template.py | 20 +++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 datacenterlight/migrations/0026_dclcalculatorpluginmodel_default_selected_template.py diff --git a/datacenterlight/cms_models.py b/datacenterlight/cms_models.py index 69f45507..10ea1510 100644 --- a/datacenterlight/cms_models.py +++ b/datacenterlight/cms_models.py @@ -354,3 +354,10 @@ class DCLCalculatorPluginModel(CMSPlugin): "in the backend to be automatically listed in this " "calculator instance." ) + default_selected_template=models.CharField( + default="Devuan Jessie", + null=True, + max_length=128, + help_text="Write the name of the template that you need selected as" + " default when the calculator loads" + ) diff --git a/datacenterlight/migrations/0026_dclcalculatorpluginmodel_default_selected_template.py b/datacenterlight/migrations/0026_dclcalculatorpluginmodel_default_selected_template.py new file mode 100644 index 00000000..257bf0ce --- /dev/null +++ b/datacenterlight/migrations/0026_dclcalculatorpluginmodel_default_selected_template.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9.4 on 2018-09-27 20:07 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('datacenterlight', '0025_dclnavbarpluginmodel_show_login_option'), + ] + + operations = [ + migrations.AddField( + model_name='dclcalculatorpluginmodel', + name='default_selected_template', + field=models.CharField(default='Devuan Jessie', help_text='Write the name of the template that you need selected as default when the calculator loads', max_length=128, null=True), + ), + ]