Commit c035d876 authored by Kevin Sibug's avatar Kevin Sibug

Updated views.py

parent ae3e85cc
from django.shortcuts import render from django.shortcuts import render
from django.views.generic.base import TemplateView
# Create your views here. # Create your views here.
class HeroesView(TemplateView):
template_name = "heroes.html"
class CloudView(TemplateView):
template_name = "detail_cloud.html"
class JesterView(TemplateView):
template_name = "detail_jester.html"
class SunfloweyView(TemplateView):
template_name = "detail_sunflowey.html"
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