initial commit
This commit is contained in:
0
managemedia/__init__.py
Normal file
0
managemedia/__init__.py
Normal file
BIN
managemedia/__pycache__/__init__.cpython-37.pyc
Normal file
BIN
managemedia/__pycache__/__init__.cpython-37.pyc
Normal file
Binary file not shown.
BIN
managemedia/__pycache__/urls.cpython-37.pyc
Normal file
BIN
managemedia/__pycache__/urls.cpython-37.pyc
Normal file
Binary file not shown.
BIN
managemedia/__pycache__/views.cpython-37.pyc
Normal file
BIN
managemedia/__pycache__/views.cpython-37.pyc
Normal file
Binary file not shown.
3
managemedia/admin.py
Normal file
3
managemedia/admin.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
5
managemedia/apps.py
Normal file
5
managemedia/apps.py
Normal file
@@ -0,0 +1,5 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class ManagemediaConfig(AppConfig):
|
||||
name = 'managemedia'
|
0
managemedia/migrations/__init__.py
Normal file
0
managemedia/migrations/__init__.py
Normal file
3
managemedia/models.py
Normal file
3
managemedia/models.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.db import models
|
||||
|
||||
class
|
3
managemedia/tests.py
Normal file
3
managemedia/tests.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
6
managemedia/urls.py
Normal file
6
managemedia/urls.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from django.urls import path
|
||||
from . import views
|
||||
|
||||
urlpatterns = [
|
||||
path('', views.index, name='index'),
|
||||
]
|
4
managemedia/views.py
Normal file
4
managemedia/views.py
Normal file
@@ -0,0 +1,4 @@
|
||||
from django.http import HttpResponse
|
||||
|
||||
def index(request):
|
||||
return HttpResponse("Hello, ur at managemedia")
|
Reference in New Issue
Block a user