diff --git a/backend/docs/03_The_admin_interface.md b/backend/docs/03_The_admin_interface.md
index 6d41d7078..2e6405753 100644
--- a/backend/docs/03_The_admin_interface.md
+++ b/backend/docs/03_The_admin_interface.md
@@ -12,7 +12,7 @@ Log in:
(This is set through the .env file. Obviously, these passwords are only suitable for local development!)
You can see an overview of different Django apps:
-
+
- **Admin_Interface** to customize how this admin interface appears to you
- **Authentication and Authorization** to give other researchers access to this admin interface
diff --git a/backend/docs/05_Creating_an_experiment.md b/backend/docs/05_Creating_an_experiment.md
index 36a2d399d..d13e850f3 100644
--- a/backend/docs/05_Creating_an_experiment.md
+++ b/backend/docs/05_Creating_an_experiment.md
@@ -4,7 +4,7 @@
Make sure you're logged in to the admin interface (see previous step).
Then, next to "Experiments" click "Add".
-
+
## The Experiment form
The form which appears lets you select the following fields:
diff --git a/backend/docs/06_Custom_questions.md b/backend/docs/06_Custom_questions.md
index ff5e1ffe0..04f0ed509 100644
--- a/backend/docs/06_Custom_questions.md
+++ b/backend/docs/06_Custom_questions.md
@@ -2,15 +2,15 @@
You can add questions to the MUSCLE infrastructure through the admin interface.
In the admin overview, you can see the question app with three models:
-
+
## Question Groups
Question Groups are sets of questions which are predefined, such as "Demographics" or question sets from the Goldsmith MSI questionnaire. We recommend not editing these, but you can add your own Question Group if you want to reuse the same set of questions in multiple experiments.
-
+
## Question Series
Question Series are sets of questions you can attach to a given block in your experiment. If you click "Add", you will see the following form:
-
+
You need to give the Question Series a descriptive name, and choose the block with which it is associated (important: the block will only display questions if its ruleset has a method that presents these questions to the participant), and an index, used for handling order if you have multiple `QuestionSeries` attached to a given block.
@@ -20,7 +20,7 @@ To add questions to the Question Series, you can either select from a list of qu
## Questions
Questions are the actual question objects. Many questions are already configured. If you click "Add", you will see the following form:
-
+
On the top, you can choose the language(s) in which you wish to enter the question. The languages that are shown can be configured through the `MODELTRANSLATION_LANGUAGES` settings in Django. Note that it is not necessary to provide translations, but that a question will be much more reusable if it has translations to multiple languages.
@@ -47,7 +47,7 @@ Indicate the *Type* of question, which influences the widget participants will s
Finally, you can indicate whether your question can be skipped by the participant.
Clicking "Save and continue editing" on all questions but `TextQuestion` will bring up another menu:
-
+
You can select different widgets:
- BUTTON_ARRAY: a horizontal array of buttons with the answer options (one answer possible)
diff --git a/backend/docs/assets/images/experiments/AddExperiment.png b/backend/docs/assets/images/AddExperiment.png
similarity index 100%
rename from backend/docs/assets/images/experiments/AddExperiment.png
rename to backend/docs/assets/images/AddExperiment.png
diff --git a/backend/docs/assets/images/admin/AdminInterface.png b/backend/docs/assets/images/AdminInterface.png
similarity index 100%
rename from backend/docs/assets/images/admin/AdminInterface.png
rename to backend/docs/assets/images/AdminInterface.png
diff --git a/backend/docs/assets/images/questions/Question.png b/backend/docs/assets/images/Question.png
similarity index 100%
rename from backend/docs/assets/images/questions/Question.png
rename to backend/docs/assets/images/Question.png
diff --git a/backend/docs/assets/images/questions/QuestionApp.png b/backend/docs/assets/images/QuestionApp.png
similarity index 100%
rename from backend/docs/assets/images/questions/QuestionApp.png
rename to backend/docs/assets/images/QuestionApp.png
diff --git a/backend/docs/assets/images/questions/QuestionChoice.png b/backend/docs/assets/images/QuestionChoice.png
similarity index 100%
rename from backend/docs/assets/images/questions/QuestionChoice.png
rename to backend/docs/assets/images/QuestionChoice.png
diff --git a/backend/docs/assets/images/questions/QuestionGroup.png b/backend/docs/assets/images/QuestionGroup.png
similarity index 100%
rename from backend/docs/assets/images/questions/QuestionGroup.png
rename to backend/docs/assets/images/QuestionGroup.png
diff --git a/backend/docs/assets/images/questions/QuestionSeries.png b/backend/docs/assets/images/QuestionSeries.png
similarity index 100%
rename from backend/docs/assets/images/questions/QuestionSeries.png
rename to backend/docs/assets/images/QuestionSeries.png