{% extends 'django_sample_components/pages/master.html' %} {% load sample_tags %} {% block content %}
{# Basic button #}
{% verbatim %}{% simple_button "Click here" href="/home" %}{% endverbatim %}
{# Button with tooltip #}
{% verbatim %}{% simple_button "Save" href="/save" tooltip="Save changes" btn_type="success" %}{% endverbatim %}
{# Button with icon only #}
{% verbatim %}{% simple_button "" href="/download" btn_type="outline-secondary" icon_before="tf-icons ti ti-download" tooltip="Download file" %}{% endverbatim %}
{# Disabled button #}
{% verbatim %}{% simple_button "Disabled" href="#" disabled=True %}{% endverbatim %}
{% endblock %}