diff --git a/app/templates/Posts/question.html b/app/templates/Posts/question.html index bcc088b..cbd0260 100644 --- a/app/templates/Posts/question.html +++ b/app/templates/Posts/question.html @@ -185,6 +185,10 @@ Invite {% endif %} +
  • + + Report +
  • diff --git a/app/templates/report.html b/app/templates/report.html index 7f0bebf..16a5375 100644 --- a/app/templates/report.html +++ b/app/templates/report.html @@ -1,14 +1,59 @@ - - - - - Title - - +{% extends "base.html" %} + + +{% block title %}Report{% endblock %} + +{% block head %} + {{ super() }} + + + + + + + +{% endblock %} + +{% block body %} +
    +

    Report:

    {{ form.csrf_token }} - {{ form.body }} - {{ form.submit }} -
    - - \ No newline at end of file + {{ form.body(class="form-text") }} + {{ form.submit(class="form-submit")}} +
    +{% endblock %} \ No newline at end of file diff --git a/data-dev.sqlite b/data-dev.sqlite index a6dc153..913a530 100644 Binary files a/data-dev.sqlite and b/data-dev.sqlite differ