Commit inicial

Habia trabajado un buen poco pero como vi que tenia que separar los
repositorios perdi bastante la historia :c
This commit is contained in:
Daniel Cortes
2020-05-22 00:05:27 -04:00
commit 3568abfbc7
44 changed files with 1841 additions and 0 deletions

11
welcome/urls.py Normal file
View File

@@ -0,0 +1,11 @@
from django.shortcuts import render
from django.urls import path
def index(request):
return render(request, 'welcome/index.html')
urlpatterns = [
path('', index)
]