diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-08-23 13:12:44 +0200 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-08-23 13:12:44 +0200 |
| commit | 0150781e88386622703d627e586d391bac0d6836 (patch) | |
| tree | 4272d98a6f29f4b16ee69d6c6a6eae63f3c22f09 /ishtar_common/migrations | |
| parent | d42f9b9db23f0f7fb992873d6cb49525714b19f8 (diff) | |
| download | Ishtar-0150781e88386622703d627e586d391bac0d6836.tar.bz2 Ishtar-0150781e88386622703d627e586d391bac0d6836.zip | |
Administration: allow admin to display field number live
Diffstat (limited to 'ishtar_common/migrations')
| -rw-r--r-- | ishtar_common/migrations/0069_userprofile_show_field_number.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ishtar_common/migrations/0069_userprofile_show_field_number.py b/ishtar_common/migrations/0069_userprofile_show_field_number.py new file mode 100644 index 000000000..5704b9f69 --- /dev/null +++ b/ishtar_common/migrations/0069_userprofile_show_field_number.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.10 on 2018-08-23 12:51 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('ishtar_common', '0068_ishtarsiteprofile_config'), + ] + + operations = [ + migrations.AddField( + model_name='userprofile', + name='show_field_number', + field=models.BooleanField(default=False, verbose_name='Show field number'), + ), + ] |
