Hi thank you for helping, I\'m poor in coding.
To point: I\'m doing a Django project that pass data form data-base to front-end; but right now i can\'t even pass an
I found out why Django can't pass variables to HTML because;
I didn't have my apps url activated the function/model in views
I feel so embarrasses, for such simple mistakes.
All I need to do is add this code in my apps url
urlpatterns = [
path('', views.timedex, name='timedex'), #need add this
path('', views.index, name='index'),
]