django-markdownx/testapp/templates/index.html

9 lines
206 B
HTML
Raw Normal View History

2016-12-04 18:36:41 +00:00
{% 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 %}