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 | e5123c28e4ef5773d416b06805cec471ec432f57 (patch) | |
tree | 4272d98a6f29f4b16ee69d6c6a6eae63f3c22f09 /ishtar_common/migrations | |
parent | dd63f57e3fc55ec8e88dbcc55a17d221b6c82562 (diff) | |
download | Ishtar-e5123c28e4ef5773d416b06805cec471ec432f57.tar.bz2 Ishtar-e5123c28e4ef5773d416b06805cec471ec432f57.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'), + ), + ] |