diff --git a/accounts/models.py b/accounts/models.py index 2f8d2fa..86dfa9a 100644 --- a/accounts/models.py +++ b/accounts/models.py @@ -10,11 +10,6 @@ class User(AbstractUser): while maintaining all the default Django User functionality. """ - # Add any custom fields here in the future - # For example: - # bio = models.TextField(max_length=500, blank=True) - # avatar = models.ImageField(upload_to='avatars/', blank=True, null=True) - class Meta: db_table = "auth_user" # Keep the same table name as Django's default User verbose_name = "User" diff --git a/config/settings.py b/config/settings.py index fcf43bb..d939f7c 100644 --- a/config/settings.py +++ b/config/settings.py @@ -118,7 +118,6 @@ INSTALLED_APPS: list[str] = [ "django.contrib.sessions", "django.contrib.messages", "django.contrib.staticfiles", - "django_tables2", "accounts.apps.AccountsConfig", "twitch.apps.TwitchConfig", ] diff --git a/pyproject.toml b/pyproject.toml index 9fdece2..aa5a76d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,13 +9,11 @@ dependencies = [ "django-browser-reload>=1.18.0", "django-debug-toolbar>=5.2.0", "django-stubs[compatible-mypy]>=5.2.2", - "django-tables2>=2.7.5", "django-watchfiles>=1.1.0", "djlint>=1.36.4", "orjson>=3.11.1", "platformdirs>=4.3.8", "python-dotenv>=1.1.1", - "tablib[all]>=3.8.0", ] [dependency-groups] diff --git a/templates/base.html b/templates/base.html index b78cd2a..3310930 100644 --- a/templates/base.html +++ b/templates/base.html @@ -38,30 +38,25 @@ {% endblock title %}
- {% include "navbar.html" %} -