Commit dec66cb1 authored by Lance Michael O. Co's avatar Lance Michael O. Co 😢

Final Commit

parent bfc71755
......@@ -5,9 +5,9 @@ from django.conf.urls import url
from .views import HomeView, HeroesView, CloudView, SunfloweyView, JesterView
urlpatterns = [
url(r'^/$', HomeView, name='home'),
url(r'^/heroes/$', HeroesView, name='heroes'),
url(r'/hero/cloud/^$', CloudView, name='cloud'),
url(r'/hero/sunflowey/^$', SunfloweyView, name='sunflowey'),
url(r'/hero/jester/^$', JesterView, name='jester'),
url(r'^/$', HomeView.as_view(), name='home'),
url(r'^/heroes$', HeroesView.as_view(), name='heroes'),
url(r'/hero/cloud^$', CloudView.as_view(), name='cloud'),
url(r'/hero/sunflowey^$', SunfloweyView.as_view(), name='sunflowey'),
url(r'/hero/jester^$', JesterView.as_view(), name='jester'),
]
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment