-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
"Updated admin panel views and templates to handle form errors and ad…
…ded error printing for debugging"
- Loading branch information
1 parent
f723df8
commit 83e1a62
Showing
6 changed files
with
58 additions
and
7 deletions.
There are no files selected for viewing
Binary file not shown.
42 changes: 42 additions & 0 deletions
42
admin_panel/migrations/0002_alter_project_options_remove_project_created_at_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,42 @@ | ||
# Generated by Django 5.1.3 on 2024-11-26 19:12 | ||
|
||
import datetime | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('admin_panel', '0001_initial'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='project', | ||
options={}, | ||
), | ||
migrations.RemoveField( | ||
model_name='project', | ||
name='created_at', | ||
), | ||
migrations.RemoveField( | ||
model_name='project', | ||
name='updated_at', | ||
), | ||
migrations.AlterField( | ||
model_name='project', | ||
name='end_date', | ||
field=models.DateField(default=datetime.date(2024, 1, 1)), | ||
preserve_default=False, | ||
), | ||
migrations.AlterField( | ||
model_name='project', | ||
name='name', | ||
field=models.CharField(max_length=255), | ||
), | ||
migrations.AlterField( | ||
model_name='project', | ||
name='status', | ||
field=models.CharField(max_length=100), | ||
), | ||
] |
Binary file added
BIN
+979 Bytes
...__pycache__/0002_alter_project_options_remove_project_created_at_and_more.cpython-310.pyc
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
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.