[e55501]: / heartApp / urls.py

Download this file

8 lines (6 with data), 178 Bytes

1
2
3
4
5
6
7
8
from django.urls import path,include
from . import views
urlpatterns= [
path('', views.mainheart, name='mainheart'),
path('/result2',views.formInfo2, name='result2'),
]