Compare commits
3 Commits
b9943b7d41
...
be581675cd
| Author | SHA1 | Date | |
|---|---|---|---|
| be581675cd | |||
| c1519bab0f | |||
| 585bc60676 |
@@ -136,6 +136,10 @@ ckeditor -> django-prose-editor
|
||||
|
||||
## Version History
|
||||
|
||||
2.2.1
|
||||
|
||||
* Fix rental (view, pdf file, sending mail)
|
||||
|
||||
2.2.0
|
||||
|
||||
* Add rental
|
||||
|
||||
Binary file not shown.
@@ -1,6 +1,6 @@
|
||||
from django.utils.version import get_version
|
||||
|
||||
VERSION = (2, 2, 0, "final", 0)
|
||||
VERSION = (2, 2, 1, "final", 0)
|
||||
BUILD = 0
|
||||
|
||||
__version__ = get_version(VERSION)
|
||||
|
||||
18
fet2020/rental/migrations/0002_rental_intern.py
Normal file
18
fet2020/rental/migrations/0002_rental_intern.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 5.2.7 on 2025-10-30 14:40
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('rental', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='rental',
|
||||
name='intern',
|
||||
field=models.BooleanField(default=False, verbose_name='Interner Verleih'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user