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:
0
src/apps/lyric/__init__.py
Normal file
0
src/apps/lyric/__init__.py
Normal file
3
src/apps/lyric/admin.py
Normal file
3
src/apps/lyric/admin.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
||||
5
src/apps/lyric/apps.py
Normal file
5
src/apps/lyric/apps.py
Normal file
@@ -0,0 +1,5 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class LyricConfig(AppConfig):
|
||||
name = 'lyric'
|
||||
0
src/apps/lyric/migrations/__init__.py
Normal file
0
src/apps/lyric/migrations/__init__.py
Normal file
3
src/apps/lyric/models.py
Normal file
3
src/apps/lyric/models.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
||||
3
src/apps/lyric/tests.py
Normal file
3
src/apps/lyric/tests.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
||||
3
src/apps/lyric/views.py
Normal file
3
src/apps/lyric/views.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
||||
Reference in New Issue
Block a user