-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat - search for taxa if not found in the current group (#4318)
* Feat - search for taxa if not found in the current group * Update bims/static/js/taxa_management/taxa_management.js
- Loading branch information
1 parent
bc08a96
commit 50373a6
Showing
7 changed files
with
134 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
bims/migrations/0447_alter_sitesetting_park_wfs_attribute_key_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Generated by Django 4.2.16 on 2024-10-18 16:27 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('bims', '0446_sitesetting_park_layer'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='sitesetting', | ||
name='park_wfs_attribute_key', | ||
field=models.CharField(blank=True, default='', help_text='Park attribute key', max_length=200), | ||
), | ||
migrations.AlterField( | ||
model_name='taxongrouptaxonomy', | ||
name='is_rejected', | ||
field=models.BooleanField(db_index=True, default=False), | ||
), | ||
migrations.AlterField( | ||
model_name='taxongrouptaxonomy', | ||
name='is_validated', | ||
field=models.BooleanField(db_index=True, default=False), | ||
), | ||
migrations.AlterField( | ||
model_name='taxonomy', | ||
name='canonical_name', | ||
field=models.CharField(blank=True, db_index=True, max_length=200, null=True, verbose_name='Canonical Name'), | ||
), | ||
migrations.AlterField( | ||
model_name='taxonomyupdateproposal', | ||
name='canonical_name', | ||
field=models.CharField(blank=True, db_index=True, max_length=200, null=True, verbose_name='Canonical Name'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters