diff options
Diffstat (limited to 'templates/admin_questions.html')
-rw-r--r-- | templates/admin_questions.html | 71 |
1 files changed, 25 insertions, 46 deletions
diff --git a/templates/admin_questions.html b/templates/admin_questions.html index 3034a4c0..3608e232 100644 --- a/templates/admin_questions.html +++ b/templates/admin_questions.html @@ -1,52 +1,31 @@ -<p> - Unbeantwortete Fragen: -</p> -<table> +<div class="col-md-10"> + <h1>Fragen beantworten</h1> + <h2>Unbeantwortete Fragen:</h2> + <table class="table"> <thead> - <tr> - <th> - Von - </th> - <th> - Frage - </th> - <th> - Antwort - </th> - <th> - - </th> - </tr> + <tr> + <th>Von</th> + <th>Frage</th> + <th>Antwort</th> + <th> </th> + </tr> </thead> - <tbody> - %open_questions% + <tbody>%open_questions% </tbody> -</table> -<hr/> -<p> - Beantwortete Fragen: -</p> -<table> + </table> + <hr /> + <h2>Beantwortete Fragen:</h2> + <table class="table"> <thead> - <tr> - <th> - Von - </th> - <th> - Frage - </th> - <th> - Von - </th> - <th> - Antwort - </th> - <th> - - </th> - </tr> + <tr> + <th>Von</th> + <th>Frage</th> + <th>Von</th> + <th>Antwort</th> + <th> </th> + </tr> </thead> - <tbody> - %answered_questions% + <tbody>%answered_questions% </tbody> -</table> + </table> +</div>
\ No newline at end of file |