-
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.
Major CSS määrittely, media filujen parempi käsittely ja oikea tiedos…
…tosijainti
- Loading branch information
1 parent
de7e2d2
commit 7779eef
Showing
31 changed files
with
251 additions
and
99 deletions.
There are no files selected for viewing
File renamed without changes
18 changes: 18 additions & 0 deletions
18
lainatehtailijat/lainatehdas/migrations/0021_alter_reservation_date_reserved.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 5.0.3 on 2024-04-22 12:04 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('lainatehdas', '0020_item_item_avail'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='reservation', | ||
name='date_reserved', | ||
field=models.DateField(), | ||
), | ||
] |
19 changes: 19 additions & 0 deletions
19
lainatehtailijat/lainatehdas/migrations/0022_alter_item_item_img.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,19 @@ | ||
# Generated by Django 5.0.3 on 2024-04-23 14:46 | ||
|
||
import lainatehdas.models | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('lainatehdas', '0021_alter_reservation_date_reserved'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='item', | ||
name='item_img', | ||
field=models.ImageField(default='media/placeholder.jpg', upload_to='media/', validators=[lainatehdas.models.validate_image_dimensions]), | ||
), | ||
] |
19 changes: 19 additions & 0 deletions
19
lainatehtailijat/lainatehdas/migrations/0023_alter_item_item_img.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,19 @@ | ||
# Generated by Django 5.0.3 on 2024-04-23 14:51 | ||
|
||
import lainatehdas.models | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('lainatehdas', '0022_alter_item_item_img'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='item', | ||
name='item_img', | ||
field=models.ImageField(default='images/placeholder.jpg', upload_to='images/', validators=[lainatehdas.models.validate_image_dimensions]), | ||
), | ||
] |
19 changes: 19 additions & 0 deletions
19
lainatehtailijat/lainatehdas/migrations/0024_alter_item_item_img.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,19 @@ | ||
# Generated by Django 5.0.3 on 2024-04-23 15:12 | ||
|
||
import lainatehdas.models | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('lainatehdas', '0023_alter_item_item_img'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='item', | ||
name='item_img', | ||
field=models.ImageField(default='images/placeholder.jpg', upload_to='MEDIA_URL', validators=[lainatehdas.models.validate_image_dimensions]), | ||
), | ||
] |
19 changes: 19 additions & 0 deletions
19
lainatehtailijat/lainatehdas/migrations/0025_alter_item_item_img.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,19 @@ | ||
# Generated by Django 5.0.3 on 2024-04-23 15:34 | ||
|
||
import lainatehdas.models | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('lainatehdas', '0024_alter_item_item_img'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='item', | ||
name='item_img', | ||
field=models.ImageField(upload_to='', validators=[lainatehdas.models.validate_image_dimensions]), | ||
), | ||
] |
19 changes: 19 additions & 0 deletions
19
lainatehtailijat/lainatehdas/migrations/0026_alter_item_item_img.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,19 @@ | ||
# Generated by Django 5.0.3 on 2024-04-23 15:42 | ||
|
||
import lainatehdas.models | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('lainatehdas', '0025_alter_item_item_img'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='item', | ||
name='item_img', | ||
field=models.ImageField(upload_to='images/', validators=[lainatehdas.models.validate_image_dimensions]), | ||
), | ||
] |
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
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
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.