File tree 2 files changed +19
-6
lines changed
moderation/templates/moderation
2 files changed +19
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
{% block content %}
4
4
< div >
5
- < p > Go to relvant section</ p >
5
+ < h2 class =" text-center mt-3 " > Go to relvant section</ h2 >
6
6
7
- < div >
8
- < a href ="# "> Flagged Questions</ a >
9
- < a href ="# "> Flagged Answers</ a >
10
- < a href ="# "> Flagged Question Comments</ a >
11
- < a href ="# "> Flagged Answer Comments</ a >
7
+ < div class =" d-flex flex-column align-items-center " >
8
+ < a class =" mt-5 " href ="{% url 'moderation:reported_questions' %} "> Flagged Questions</ a >
9
+ < a class =" mt-5 " href ="# "> Flagged Answers</ a >
10
+ < a class =" mt-5 " href ="# "> Flagged Question Comments</ a >
11
+ < a class =" mt-5 " href ="# "> Flagged Answer Comments</ a >
12
12
</ div >
13
13
</ div >
14
14
{% endblock %}
Original file line number Diff line number Diff line change
1
+ {% extends 'main/base.html' %}
2
+
3
+ {% block content %}
4
+
5
+ < div style ="width: 800px; margin: auto; " class ="d-flex flex-column mt-5 ">
6
+ {% for report in reported_question_list %}
7
+ < div class ="p-4 h4 ">
8
+ < a href ="{% url 'main:question_details' report.question.id %} "> {{ report.question }} -- reports: {{ report.number_of_reports }} </ a >
9
+ </ div >
10
+ {% endfor %}
11
+ </ div >
12
+
13
+ {% endblock content %}
You can’t perform that action at this time.
0 commit comments