This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
creylopez
/
AppsPy
Watch
1
Star
1
Fork
0
Code
Issues
2
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Añado app lyrics a ReyMota
politica
Celestino Rey
1 year ago
parent
946c8d9581
commit
353022a411
7 changed files
with
18 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+0
-0
ReyMotaAppsDj/reymota/lyrics/__init__.py
+3
-0
ReyMotaAppsDj/reymota/lyrics/admin.py
+6
-0
ReyMotaAppsDj/reymota/lyrics/apps.py
+0
-0
ReyMotaAppsDj/reymota/lyrics/migrations/__init__.py
+3
-0
ReyMotaAppsDj/reymota/lyrics/models.py
+3
-0
ReyMotaAppsDj/reymota/lyrics/tests.py
+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.
Write
Preview
Loading…
Cancel
Save