<!DOCTYPE html>
<html>
<body>
<h1>Welcome Everyone</h1>
{% comment "this was the original welcome message" %}
    <h1>Welcome ladies and gentlemen</h1>
{% endcomment %}
</body>
</html>                  from django.http import HttpResponse
from django.template import loader
def testing(request):
  template = loader.get_template('template.html')
  return HttpResponse(template.render())