I create a project with Django but for same reason I not getting the same as in video
% extends “tourist_attractions/base.html” %}
{% load static %}
{% block head %}
{% endblock%}
{% block content %}
This is a list of attractions in America!
{% for items in attractions|dictsort:"state"%}
{% endfor %}
Attraction |
State |
State details |
{{item.attraction_name}} |
{{item.sate}} |
<a href="{% url 'details' item.state|slugify %}"State Details |
{% endblock %}
I am not getting a table why?
Please include the following: