{% extends "base.html" %} {% block title %} New Thread {% endblock %} {% block content %} {% if package and current_user != package.author and not current_user.rank.atLeast(current_user.rank.EDITOR) %} {% if package.issueTracker %}
Found a bug? Post on the issue tracker instead.
If the package shouldn't be on CDB - for example, if it doesn't work at all - then please let us know here.
{% endif %} {% 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 the you, the package author, and users of Editor rank and above can read private threads.

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