Make scripts/objects lists use EvMore. Change EvMore to not justify by default.

This commit is contained in:
Griatch 2020-01-11 15:49:12 +01:00
parent b5aee2c41e
commit 69d85bd184
221 changed files with 2190 additions and 6810 deletions

View file

@ -15,10 +15,7 @@ class Migration(migrations.Migration):
(
"id",
models.AutoField(
verbose_name="ID",
serialize=False,
auto_created=True,
primary_key=True,
verbose_name="ID", serialize=False, auto_created=True, primary_key=True
),
),
(
@ -50,9 +47,7 @@ class Migration(migrations.Migration):
(
"db_lock_storage",
models.TextField(
help_text="normally view:all().",
verbose_name="locks",
blank=True,
help_text="normally view:all().", verbose_name="locks", blank=True
),
),
("db_staff_only", models.BooleanField(default=False)),
@ -65,10 +60,7 @@ class Migration(migrations.Migration):
),
),
],
options={
"verbose_name": "Help Entry",
"verbose_name_plural": "Help Entries",
},
options={"verbose_name": "Help Entry", "verbose_name_plural": "Help Entries"},
bases=(models.Model,),
)
]

View file

@ -12,9 +12,7 @@ class Migration(migrations.Migration):
model_name="helpentry",
name="db_entrytext",
field=models.TextField(
blank=True,
help_text="the main body of help text",
verbose_name="help entry",
blank=True, help_text="the main body of help text", verbose_name="help entry"
),
),
migrations.AlterField(
@ -31,10 +29,7 @@ class Migration(migrations.Migration):
model_name="helpentry",
name="db_key",
field=models.CharField(
help_text="key to search for",
max_length=255,
unique=True,
verbose_name="help key",
help_text="key to search for", max_length=255, unique=True, verbose_name="help key"
),
),
migrations.AlterField(