mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-20 23:12:15 +00:00
Added multi-option search along.
Added auto hiding of categories in search unless selected. Added field allowing to choose whether category auto-hidden Fixes #353
This commit is contained in:
22
assets/migrations/0013_auto_20191016_1446.py
Normal file
22
assets/migrations/0013_auto_20191016_1446.py
Normal file
@@ -0,0 +1,22 @@
|
||||
# Generated by Django 2.0.13 on 2019-10-16 13:46
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('assets', '0012_auto_20191014_0012'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='asset',
|
||||
options={'ordering': ['asset_id'], 'permissions': (('asset_finance', 'Can see financial data for assets'),)},
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='assetstatus',
|
||||
name='should_show',
|
||||
field=models.BooleanField(default=True, help_text='Should this be shown by default in the asset list.'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user