{% extends 'crm/base.html' %} {% load staticfiles %} {% block title %} Template Dashboard {% endblock title %} {% block extra_css %} {% endblock extra_css %} {% block body %}
Create Web Template


{% csrf_token %}

Recommended Landing Page

{% for list in public_web_template %}
{% if not list.is_public %} {{ list.name }} {% endif %}
Preview
{% endfor %}

Landing Page

{% for list in object_list %}
{% if not list.is_public %} {{ list.name|truncatechars:30 }} {% endif %}
Preview
{% if not list.is_public %} Delete {% endif %}
{% endfor %}
{% endblock body %} {% block extra_js %} {% endblock extra_js %}