django-markdownx/testapp/templates/index.html
2016-12-04 19:36:41 +01:00

8 lines
206 B
HTML

{% extends 'base.html' %}
{% block content %}
<ul>
<li><a href="{% url 'form_view' %}">Generic Form</a></li>
<li><a href="{% url 'create_view' %}">Generic Create View</a></li>
</ul>
{% endblock %}