{% extends "base/content.html" %} {% load crispy_forms_tags %} {% block title %} {% blocktrans with instance_name=category.name %} Delete category {{ instance_name }} {% endblocktrans %} {% endblock %} {% block content %}
{% blocktrans with instance_name=category.name %} Delete category {{ instance_name }} . {% endblocktrans %}

{% trans 'Category Name' %}
{{ category.name }}
{% trans 'Created at' %}
{{ category.created_at }}
{% trans 'Pin to consumptions top' %}
{% if category.pin_to_consumptions_top %} {% trans "Yes" %} {% else %} {% trans "No" %} {% endif %}
{% trans 'Is Disabled' %}
{% if category.is_disabled %} {% trans "Yes" %} {% else %} {% trans "No" %} {% endif %}

{% blocktrans %} Are you sure you want to delete this category? This operation is irreversible. {% endblocktrans%}

{% csrf_token %}
{% endblock %}