added contact form

This commit is contained in:
DerTyp187
2021-11-25 10:57:40 +01:00
parent 7503846d4c
commit f2c9d3216b
16 changed files with 177 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
# Generated by Django 3.2.9 on 2021-11-25 08:14
from django.db import migrations, models
import django.utils.timezone
class Migration(migrations.Migration):
dependencies = [
('contact', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='entry',
name='date_created',
field=models.DateTimeField(default=django.utils.timezone.now),
),
]