{% from 'includes/forms.html' import required, optional %} {% from 'devhub/includes/macros.html' import some_html_tip %} {% macro maybe_required() %} {% if not slim %} {% if addon.takes_contributions %} {{ required() }} {{ _('(required since this add-on accepts contributions)') }} {% else %} {{ optional() }} {% endif %} {% endif %} {% endmacro %} {% if addon.has_profile() %}
{% trans %} Your developer profile will tell users about you, why you made this add-on, and what's next for the add-on. This profile is required for add-ons requesting contributions, but can be useful for any developer interested in connecting with users. {% endtrans %}
{% trans url=url('users.edit') %} Update your user profile. {% endtrans %}