started lyric app (in earnest this time); added bootstrap-classed navbar w. login form to base.html; tweaked apps.dashboard.tests.test_views to accomodate multiple forms on same page

This commit is contained in:
Disco DeDisco
2026-01-29 15:21:54 -05:00
parent 3ebf4db974
commit a734901b80
10 changed files with 72 additions and 33 deletions

View File

3
src/apps/lyric/admin.py Normal file
View File

@@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

5
src/apps/lyric/apps.py Normal file
View File

@@ -0,0 +1,5 @@
from django.apps import AppConfig
class LyricConfig(AppConfig):
name = 'lyric'

View File

3
src/apps/lyric/models.py Normal file
View File

@@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
src/apps/lyric/tests.py Normal file
View File

@@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

3
src/apps/lyric/views.py Normal file
View File

@@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.