Add documentation and source

Added documentation, source and extra files.
This commit is contained in:
2025-07-02 20:26:50 +02:00
parent 4fc1d36a10
commit e3ebf6bf4f
295 changed files with 24986 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 3.2 on 2021-04-13 17:12
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('library', '0003_person_picture'),
]
operations = [
migrations.AlterField(
model_name='person',
name='picture',
field=models.ImageField(blank=True, max_length=256, null=True, upload_to='pictures', verbose_name='picture'),
),
]