Commit 7eb764b0 authored by martin0726's avatar martin0726

Testing

I tried to run the manage.py runserver. It asked me to migrate as well which I did
parent 3f7c8c5b
File added
<html>
<head><title>The Willowisps Wiki</title></head>
<head><title>The Will of the Wisps Wikis</title></head>
</html>
\ No newline at end of file
......@@ -3,8 +3,8 @@ from django.conf.urls import url
from .views import heroesView, cloudView, sunfloweyView, jesterView
urlpatterns = [
url(r'^heroes/$', heroesView.as_view(), name='heroes'),
url(r'^heroes/cloud$', cloudView.as_view(), name='Cloud'),
url(r'^heroes/sunflowey$', sunfloweyView.as_view(), name='Sunflowey')
url(r'^heroes/jester$', jesterView.as_view(), name='Jester')
url(r'^heroes/$', heroesView.as_view(), name='heroes_show'),
url(r'^heroes/cloud$', cloudView.as_view(), name='cloud_show'),
url(r'^heroes/sunflowey$', sunfloweyView.as_view(), name='sunflowey_show')
url(r'^heroes/jester$', jesterView.as_view(), name='jester_show')
]
\ 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