diff --git a/core/__pycache__/urls.cpython-311.pyc b/core/__pycache__/urls.cpython-311.pyc index 1f807fa..c90d76c 100644 Binary files a/core/__pycache__/urls.cpython-311.pyc and b/core/__pycache__/urls.cpython-311.pyc differ diff --git a/core/migrations/0001_initial.py b/core/migrations/0001_initial.py new file mode 100644 index 0000000..ed0deae --- /dev/null +++ b/core/migrations/0001_initial.py @@ -0,0 +1,33 @@ +# Generated by Django 5.2.7 on 2025-11-19 21:26 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ] + + operations = [ + migrations.CreateModel( + name='Event', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('artist_name', models.CharField(max_length=200)), + ('date', models.DateField()), + ('venue_name', models.CharField(max_length=200)), + ('city', models.CharField(max_length=100)), + ('state', models.CharField(max_length=100)), + ('age_restriction', models.CharField(choices=[('18+', '18+'), ('21+', '21+'), ('All Ages', 'All Ages')], default='21+', max_length=10)), + ('status', models.CharField(choices=[('Open', 'Open'), ('Closed', 'Closed')], default='Open', max_length=10)), + ('description', models.TextField(blank=True)), + ('featured_image', models.URLField(blank=True)), + ('ticket_url', models.URLField(blank=True)), + ], + options={ + 'ordering': ['date'], + }, + ), + ] diff --git a/core/migrations/__pycache__/0001_initial.cpython-311.pyc b/core/migrations/__pycache__/0001_initial.cpython-311.pyc new file mode 100644 index 0000000..5ac5c41 Binary files /dev/null and b/core/migrations/__pycache__/0001_initial.cpython-311.pyc differ diff --git a/core/templates/base.html b/core/templates/base.html index af6832d..2891d87 100644 --- a/core/templates/base.html +++ b/core/templates/base.html @@ -1,19 +1,19 @@ +{% load static %} - {% block title %}Sacred Hive Promo Dashboard{% endblock %} - + Sacred Hive Promo Dashboard + - - {% load static %} + - {% block head %}{% endblock %} -