forked from muyrety/Smarter
30 lines
1.7 KiB
Django/Jinja
30 lines
1.7 KiB
Django/Jinja
{% extends "base.j2" %}
|
|
|
|
{% block title %} Why was my question removed? {% endblock %}
|
|
|
|
{% block main %}
|
|
<div class="container text-center justify-content-center">
|
|
<h1 class="mt-2 text-primary-emphasis"> Why was my question removed? </h1>
|
|
<p class="text-primary-emphasis">
|
|
Question removal can happen due to various reasons. If you have recently submitted
|
|
a new question, it is very likely that it has been rejected. Make sure your submission meets these criteria:
|
|
</p>
|
|
<ul class="list-group list-group-flush">
|
|
<li class="text-primary-emphasis list-group-item-info border-primary-subtle list-group-item">
|
|
Similar question has not been submitted before. You can check questions submitted by users
|
|
<a class="text-primary-emphasis link-offset-2" href="{{ url_for('questions.user_browse') }}"> here </a>
|
|
</li>
|
|
<li class="text-primary-emphasis list-group-item-info border-primary-subtle list-group-item">
|
|
Your question has the right category and difficulty selected. Make sure to go through all
|
|
categories and difficulty levels to decide which one best suits your question
|
|
</li>
|
|
<li class="text-primary-emphasis list-group-item-info border-primary-subtle list-group-item">
|
|
The answers to your question are factually correct. Check if the correct answer is definitely correct
|
|
and incorrect answers are all unambiguously incorrect
|
|
</li>
|
|
<li class="text-primary-emphasis list-group-item-info border-primary-subtle list-group-item">
|
|
The answer fields are filled correctly. For example, if a question has 3 incorrect answers, make sure they are all different
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
{% endblock %}
|