File: index.html

package info (click to toggle)
python-django-crispy-forms-foundation 1.0.2%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 852 kB
  • sloc: javascript: 6,437; python: 1,262; makefile: 195; sh: 17
file content (15 lines) | stat: -rw-r--r-- 703 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "skeleton.html" %}
{% load i18n %}

{% block menu_item_contact %} class="active"{% endblock %}

{% block base_content %}<div class="row">
    <h2>Demo index</h2>

    <hr>
    <div class="large-6 columns text-center">
        <p><a href="{% url 'demo:crispy-demo-form-fieldsets' foundation_version=foundation_version %}" class="button large">Form by fieldsets</a></p>
        <p><a href="{% url 'demo:crispy-demo-form-accordions' foundation_version=foundation_version %}" class="button large">Form by accordions</a></p>
        <p><a href="{% url 'demo:crispy-demo-form-tabs' foundation_version=foundation_version %}" class="button large">Form by tabs</a></p>
    </div>
</div>{% endblock %}