{% extends "base.html" %} {% block title %} {{ _("New Thread") }} {% endblock %} {% block content %} {% if package and current_user != package.author and package.issueTracker %}

{{ _("Found a bug? Post on the issue tracker instead.", url=package.issueTracker) }}
{{ _("If the package shouldn't be on CDB (eg: if it doesn't work at all), then you can let us know here.") }}

{% endif %} {% from "macros/forms.html" import render_field, render_submit_field, render_checkbox_field %}
{{ form.hidden_tag() }} {{ render_field(form.title) }}
{{ current_user.display_name }}
{{ render_field(form.comment, label="", class_="m-0", fieldclass="form-control markdown") }}
{{ render_checkbox_field(form.private, class_="my-3") }}

{{ _("Only you, the package author, and users of Approver rank and above can read private threads.") }}

{{ render_submit_field(form.submit) }}
{% endblock %}