Commit 20c12b9f authored by ourfbht's avatar ourfbht
Browse files

pages are now in containers and nav too

parent d21b25fa
Loading
Loading
Loading
Loading
+43 −41
Original line number Diff line number Diff line
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<html lang="en" xmlns:th="http://www.thymeleaf.org">

    <head>
        <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.0/css/materialize.min.css">
@@ -10,6 +10,7 @@

    <body>
        <header th:insert="fragments/nav.html :: nav"> </header>
        <div class="container">
            <h1 class="teal-text text-darken-4">Your help Proposition</h1>
            <div th:each="help: ${helpPropositions}">
                <div class="row">
@@ -45,5 +46,6 @@
                    </div>
                </div>
            </div>
        </div>
    </body>
</html>
+44 −42
Original line number Diff line number Diff line
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<html lang="en" xmlns:th="http://www.thymeleaf.org">

<head>
    <meta charset="ISO-8859-1">
@@ -10,6 +10,7 @@

<body>
    <header th:insert="fragments/nav.html :: nav"> </header>
    <div class="container">
        <h1 class="teal-text text-darken-4">Your help request</h1>
        <div th:each="help: ${helpRequests}">
            <div class="row">
@@ -46,5 +47,6 @@
                </div>
            </div>
        </div>
    </div>
</body>
</html>
+12 −14
Original line number Diff line number Diff line
<!DOCTYPE html>
<html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
    
    <head>
        <meta charset="ISO-8859-1">
@@ -11,8 +11,8 @@
    <body>
        <header th:insert="fragments/nav.html :: nav"> </header>

        <div class="container">
            <h1 class="teal-text text-darken-4">All users</h1>
        
            <table class="table">
                <thead>
                    <tr>
@@ -35,7 +35,6 @@
                    </tr>
                </tbody>
            </table>
        </div>

            <h1 class="teal-text text-darken-4">All propositions</h1>

@@ -69,7 +68,6 @@
                    </tr>
                </tbody>
            </table>
        </div>

            <h1 class="teal-text text-darken-4">All requests</h1>

+31 −29
Original line number Diff line number Diff line
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<html lang="en" xmlns:th="http://www.thymeleaf.org">

    <head>       
        <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.0/css/materialize.min.css">
@@ -10,6 +10,7 @@

    <body>
        <header th:insert="fragments/nav.html :: nav"> </header>
        <div class="container">
            <h1 class="teal-text text-darken-4">All Help Proposition</h1>
            <div th:each="help: ${helpPropositions}">
                <div class="row">
@@ -47,5 +48,6 @@
                    </div>
                </div>
            </div>
        </div>
    </body>
</html>
+45 −43
Original line number Diff line number Diff line
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<html lang="en" xmlns:th="http://www.thymeleaf.org">

    <head>
        <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.0/css/materialize.min.css">
@@ -10,6 +10,7 @@

    <body>
        <header th:insert="fragments/nav.html :: nav"> </header>
        <div class="container">
            <h1 class="teal-text text-darken-4">All help requests</h1>
            <div th:each="help: ${helpRequests}">
                <div class="row">
@@ -48,5 +49,6 @@
                    </div>
                </div>
            </div>
        </div>
    </body>
</html>
Loading