Browse Source

Añado app lyrics a ReyMota

politica
Celestino Rey 1 year ago
parent
commit
353022a411
7 changed files with 18 additions and 0 deletions
  1. +0
    -0
      ReyMotaAppsDj/reymota/lyrics/__init__.py
  2. +3
    -0
      ReyMotaAppsDj/reymota/lyrics/admin.py
  3. +6
    -0
      ReyMotaAppsDj/reymota/lyrics/apps.py
  4. +0
    -0
      ReyMotaAppsDj/reymota/lyrics/migrations/__init__.py
  5. +3
    -0
      ReyMotaAppsDj/reymota/lyrics/models.py
  6. +3
    -0
      ReyMotaAppsDj/reymota/lyrics/tests.py
  7. +3
    -0
      ReyMotaAppsDj/reymota/lyrics/views.py

+ 0
- 0
ReyMotaAppsDj/reymota/lyrics/__init__.py View File


+ 3
- 0
ReyMotaAppsDj/reymota/lyrics/admin.py View File

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

+ 6
- 0
ReyMotaAppsDj/reymota/lyrics/apps.py View File

@ -0,0 +1,6 @@
from django.apps import AppConfig
class LyricsConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'lyrics'

+ 0
- 0
ReyMotaAppsDj/reymota/lyrics/migrations/__init__.py View File


+ 3
- 0
ReyMotaAppsDj/reymota/lyrics/models.py View File

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

+ 3
- 0
ReyMotaAppsDj/reymota/lyrics/tests.py View File

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

+ 3
- 0
ReyMotaAppsDj/reymota/lyrics/views.py View File

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

Loading…
Cancel
Save