{% extends "lingo/pricing/manager_pricing_list.html" %} {% load gadjo i18n %} {% block breadcrumb %} {{ block.super }} {{ object }} {% endblock %} {% block appbar %}

{{ object }} [{% trans "identifier:" %} {{ object.slug }}]

{% endblock %} {% block content %} {% with iter_matrix=object.iter_pricing_matrix|list agendas=object.agendas.all %}
{% if object.kind != 'basic' %} {% endif %} {% if object.subscription_required %} {% endif %} {% if object.flat_fee_schedule %} {% endif %} {% for matrix in iter_matrix %} {% empty %} {% endfor %}
  • {% blocktrans trimmed with start=object.date_start|date:'d/m/Y' end=object.date_end|date:'d/m/Y' %}From {{ start }} to {{ end }}{% endblocktrans %}
  • {% trans "Flat fee schedule:" %} {{ object.flat_fee_schedule|yesno }}
  • {% if object.flat_fee_schedule %}
  • {% trans "Subscription required:" %} {{ object.subscription_required|yesno }}
  • {% endif %}
  • {% trans "Kind of pricing:"%} {{ object.get_kind_display }}
  • {% if object.kind == 'reduction' %}
  • {% trans "Reduction rate (template):" %}
    {{ object.reduction_rate }}
  • {% elif object.kind == 'effort' %}
  • {% trans "Pricing to be multiplied by the effort rate (template):" %}
    {{ object.effort_rate_target }}
  • {% endif %}
{% if object.kind != 'basic' %} {% endif %} {% if object.subscription_required %} {% endif %} {% if object.flat_fee_schedule %} {% endif %} {% for matrix in iter_matrix %} {% empty %} {% endfor %}
{% endwith %} {% endblock %} {% block sidebar %} {% endblock %}