{% extends 'slunic/forms/base.html' %} {% load i18n slunic_tags widget_tweaks %} {% block head_title %}{% trans "Share Knowledge with Tutorial" %}{% endblock %} {% block page_title %}{% trans "Share Knowledge" %}{% endblock %} {% block page_subtitle %}{% trans "Transferring information from one member to another not only increases productivity, but it also empowers people to do their jobs effectively and efficiently." %}{% 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 }}
{% render_field form.summary class="form-control w-100 mb-2" placeholder=summary_placeholder rows="4" %} {{ form.summary.errors }}
{% blocktrans %} Write your full tutorial below, Always keep in mind that our readers are as diverse as our contributors. Content must be understood by a wide audience, including people who have never read about your topic. Avoid academic or industry jargon, and unpack your ideas in simple language. {% 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 %}