Habia trabajado un buen poco pero como vi que tenia que separar los repositorios perdi bastante la historia :c
12 lines
176 B
Python
12 lines
176 B
Python
from django.shortcuts import render
|
|
from django.urls import path
|
|
|
|
|
|
def index(request):
|
|
return render(request, 'welcome/index.html')
|
|
|
|
|
|
urlpatterns = [
|
|
path('', index)
|
|
]
|