{% extends 'creme_core/bricks/base/base.html' %} {% load i18n creme_bricks %} {% load url from creme_core_tags %} {% block brick_extra_class %}brick-kv-list activities-unsuccessful-config-brick{% endblock %} {% block brick_header_title %} {% brick_header_title title=verbose_name icon='phone' %} {% endblock %} {% block brick_header_actions %} {% brick_header_action id='edit' url='activities__edit_unsuccessful_call_settings'|url label=_('Edit the configuration') %} {% endblock %} {% block brick_content %}
{% blocktranslate with config_url='creme_config__buttons'|url %}This button can be placed on Activities' detail-views in the buttons configuration. It allows to create a not successful Phone Call in one click.{% endblocktranslate %}
{% translate 'Sub-type' %}
{% if sub_type is None %}
{% translate 'The recorded sub-type is invalid (it may have been deleted)' %}
{% else %}
{{sub_type}}
{% endif %}
{% translate 'Title' %}
{{title}}
{% translate 'Status' %}
{% if status is None %}
{% translate 'The recorded status is invalid (it may have been deleted)' %}
{% else %}
{{status}}
{% endif %}
{% translate 'Duration' %}
{% blocktranslate count count=duration %}{{count}} minute{% plural %}{{count}} minutes{% endblocktranslate %}
{% endblock %}