{% extends 'core/base.html' %} {% load i18n %} {% load static %} {% load compress %} {% load core_tags %} {% block head %} {% compress css %} {% endcompress %} {% compress js %} {% endcompress %} {% endblock %} {% block content %}
{% csrf_token %}

{% trans 'Send task' %}

{% trans 'Sending a task will set the status to "in progress".' %}

{% include 'core/bootstrap_form_field.html' with field=form.subject %} {% include 'core/bootstrap_form_field.html' with field=form.message %} {% if mail_form.fields %} {% include 'projects/issue_send_email.html'%} {% endif %}
{% if integrations %} {% include 'projects/issue_send_integrations.html'%} {% endif %}
{% render_lang_template 'projects/overlays/issue_send_issue_message' %} {% render_lang_template 'projects/overlays/issue_send_issue_attachments' %} {% render_lang_template 'projects/overlays/issue_send_support_info' %} {% endblock %}