{% extends 'slunic/forms/base.html' %} {% load i18n slunic_tags widget_tweaks %} {% block head_title %}{% trans "Ask the Community" %}{% endblock %} {% block page_title %}{% trans "Ask the Community" %}{% endblock %} {% block page_subtitle %}{% trans "Running into trouble? Our developer community is here to help! Ask anything related to system administration, programming, devops, open source, or the DigitalOcean platform." %}{% endblock %} {% block form_wrapper %}
{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% trans "Be specific and imagine you’re asking a question to another person." %} {% trans "How to get mineral water certification for my brand new company?" as title_placeholder %} {% render_field form.title class="form-control form-control-lg mb-2" placeholder=title_placeholder %} {{ form.title.errors }}
{% blocktrans %} Write your full question here, including any relevant information someone would need to answer your question. The community is here to help you with specific problem, Please avoid asking opinion-based questions. {% endblocktrans %} {{ form.content }} {{ form.content.errors }}
{{ form.tags.help_text }} {% trans "business, management" as tags_placeholder%} {% render_field form.tags class="form-control form-control-lg mb-2" placeholder=tags_placeholder %} {{ form.tags.errors }}
{% endblock form_wrapper %}