-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #672 from kartoza/develop
Downloader: add readme file + filter by organisation (#655)
- Loading branch information
Showing
9 changed files
with
100 additions
and
4 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
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,22 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Django: Run server", | ||
"type": "debugpy", | ||
"request": "launch", | ||
"program": "${workspaceFolder}/manage.py", | ||
"args": [ | ||
"runserver", "8000" | ||
], | ||
"django": true, | ||
"justMyCode": true, | ||
"env": { | ||
"DJANGO_SETTINGS_MODULE": "core.settings.dev" | ||
} | ||
} | ||
] | ||
} |
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
Submodule gwml2
updated
from 4898bb to 7d3e05
23 changes: 23 additions & 0 deletions
23
django_project/igrac/migrations/0013_auto_20240322_0315.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,23 @@ | ||
# Generated by Django 3.2.20 on 2024-03-22 03:15 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('igrac', '0012_sitepreference_banner'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='sitepreference', | ||
name='download_readme_text', | ||
field=models.TextField(blank=True, help_text='Readme text to be included in the download zip file.', null=True), | ||
), | ||
migrations.AddField( | ||
model_name='sitepreference', | ||
name='ggmn_download_readme_text', | ||
field=models.TextField(blank=True, help_text='Readme text to be included in the download zip file of GGMN data type.', null=True), | ||
), | ||
] |
18 changes: 18 additions & 0 deletions
18
django_project/igrac/migrations/0014_groundwaterlayer_is_ggmn_layer.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,18 @@ | ||
# Generated by Django 3.2.20 on 2024-03-22 04:18 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('igrac', '0013_auto_20240322_0315'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='groundwaterlayer', | ||
name='is_ggmn_layer', | ||
field=models.BooleanField(default=False, help_text='Indicate that this layer is ggmn layer. It will be used to construct the data to be downloaded.'), | ||
), | ||
] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
4.4.10 | ||
4.4.11 |