From 048ad4d5bd62599cda8e4cab9b7230b0d659fa73 Mon Sep 17 00:00:00 2001 From: Piotr Gawron <piotr.gawron@uni.lu> Date: Mon, 25 Sep 2017 11:06:03 +0200 Subject: [PATCH] subject model renamed --- .../web/migrations/0055_auto_20170925_0905.py | 20 +++++++++++++++++++ smash/web/models/subject.py | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 smash/web/migrations/0055_auto_20170925_0905.py diff --git a/smash/web/migrations/0055_auto_20170925_0905.py b/smash/web/migrations/0055_auto_20170925_0905.py new file mode 100644 index 00000000..1263dd7c --- /dev/null +++ b/smash/web/migrations/0055_auto_20170925_0905.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.7 on 2017-09-25 09:05 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('web', '0054_remove_inconsistentsubject_ignore'), + ] + + operations = [ + migrations.AlterField( + model_name='subject', + name='datetime_contact_reminder', + field=models.DateTimeField(blank=True, null=True, verbose_name=b'Please make a contact on'), + ), + ] diff --git a/smash/web/models/subject.py b/smash/web/models/subject.py index b67ff306..c0a0b4b8 100644 --- a/smash/web/models/subject.py +++ b/smash/web/models/subject.py @@ -42,7 +42,7 @@ class Subject(models.Model): datetime_contact_reminder = models.DateTimeField( null=True, blank=True, - verbose_name='Contact on', + verbose_name='Please make a contact on', ) type = models.CharField(max_length=1, choices=SUBJECT_TYPE_CHOICES.items(), -- GitLab