{% 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() %}

{{ _('Manage Your Developer Profile') }}

{% else %}

{{ _('Create a Developer Profile') }}

{% endif %}

{% 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 %}

{{ _('Make sure your user profile is up to date.') }}

{% trans url=url('users.edit') %} Update your user profile. {% endtrans %}

{% trans %} Whether it was an idea while in line at the grocery store or the solution to one of life's great problems, share your story. {% endtrans %} {{ profile_form.the_reason.errors }} {{ profile_form.the_reason }} {{ some_html_tip() }}
{% trans %} Telling your users what's coming soon will give them something to look forward to. {% endtrans %} {{ profile_form.the_future.errors }} {{ profile_form.the_future }} {{ some_html_tip() }}