-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tracking pull request to merge release-1.28.0 to main (#722)
* fix: 702 - parsing decrypted file (#723) * feat: 693 - delete legacy applications (#726) * feat: 693 - delete legacy applications * small change --------- Co-authored-by: tim738745 <98717409+tim738745@users.noreply.github.com>
- Loading branch information
1 parent
3d3e01d
commit 1b1b069
Showing
10 changed files
with
146 additions
and
76 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
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
25 changes: 25 additions & 0 deletions
25
django/api/migrations/0022_legacygoelectricrebateapplication.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,25 @@ | ||
# Generated by Django 4.0.9 on 2024-06-20 18:31 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('api', '0021_expiredgoelectricrebateapplication'), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='LegacyGoElectricRebateApplication', | ||
fields=[ | ||
], | ||
options={ | ||
'ordering': ['-modified'], | ||
'proxy': True, | ||
'indexes': [], | ||
'constraints': [], | ||
}, | ||
bases=('api.goelectricrebateapplication',), | ||
), | ||
] |
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
4 changes: 4 additions & 0 deletions
4
django/api/templates/admin/api/legacygoelectricrebateapplication/change_form.html
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,4 @@ | ||
{% extends "admin/api/change_form.html" %} {% load i18n admin_urls jazzmin %} {% | ||
get_jazzmin_ui_tweaks as jazzmin_ui %} | ||
|
||
{% block itvr_subheader %}{% endblock %} |
5 changes: 5 additions & 0 deletions
5
django/api/templates/admin/api/legacygoelectricrebateapplication/change_list.html
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,5 @@ | ||
{% extends "admin/api/change_list.html" %} | ||
{% load i18n admin_urls static admin_list jazzmin %} {% | ||
|
||
{% block content_title %} Delete Legacy Applications {% endblock %} | ||
{% block itvr_subtitle %} Delete Legacy Applications {% endblock %} |
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