-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed project name and logo, updated err_msg and err_png fields in …
…ClosedTasksDetail model, added ellipsis utility, and modified related UI components.
- Loading branch information
1 parent
0c718b7
commit ee75449
Showing
16 changed files
with
1,827 additions
and
152 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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 5.0.4 on 2024-06-24 06:43 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("api", "0048_alter_closedtasksdetail_err_type"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="closedtasksdetail", | ||
name="err_msg", | ||
field=models.TextField(default="", verbose_name="ClosedTasksDetail ErrMsg"), | ||
), | ||
] |
17 changes: 17 additions & 0 deletions
17
backend/api/migrations/0050_remove_closedtasksdetail_err_msg.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,17 @@ | ||
# Generated by Django 5.0.4 on 2024-06-24 06:58 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("api", "0049_closedtasksdetail_err_msg"), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name="closedtasksdetail", | ||
name="err_msg", | ||
), | ||
] |
28 changes: 28 additions & 0 deletions
28
backend/api/migrations/0051_closedtasksdetail_err_msg_closedtasksdetail_err_png.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,28 @@ | ||
# Generated by Django 5.0.4 on 2024-06-24 07:15 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("api", "0050_remove_closedtasksdetail_err_msg"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="closedtasksdetail", | ||
name="err_msg", | ||
field=models.TextField(default="", verbose_name="ClosedTasksDetail ErrMsg"), | ||
), | ||
migrations.AddField( | ||
model_name="closedtasksdetail", | ||
name="err_png", | ||
field=models.CharField( | ||
blank=True, | ||
max_length=250, | ||
null=True, | ||
verbose_name="ClosedTasksDetail ErrPng", | ||
), | ||
), | ||
] |
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
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Oops, something went wrong.