12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- {{define "queue-get" -}}
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>File {{ .info.Name }}</title>
- <link rel="stylesheet" href="/assets/styles.css"/>
- <link rel="stylesheet" href="/assets/bootstrap.min.css">
- </head>
- <body>
- <main class="container">
- <div class="container mt-5">
- <nav aria-label="breadcrumb">
- <ol class="breadcrumb">
- <li class="breadcrumb-item"><a href="#">Home</a></li>
- <li class="breadcrumb-item active" aria-current="page">{{ .info.Name }}</li>
- </ol>
- </nav>
- <h1 class="text-3xl font-bold underline">Queue view for {{ .info.Name }}</h1>
- {{ template "flashes" .flashes }}
- <table class="table">
- <thead>
- <tr>
- <th scope="col">Propriété</th>
- <th scope="col">Propriété</th>
- <th scope="col">Valeur</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <th scope="row">Nom</th>
- <td>{{ .info.Name }}
- </td>
- </tr>
- <tr>
- <th scope="row">URL</th>
- <td><a href="{{ .info.URL }}">{{ .info.URL }}</a>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- <section class="container mt-5">
- <div class="d-flex align-items-center justify-content-between">
- <h2 class="my-5">Messages</h2>
- <button type="submit" form="msg-form" id="delete" class="btn btn-outline-danger" disabled>Delete
- selection
- </button>
- </div>
- <form method="post" id="msg-form">
- <table class="table">
- <thead>
- <tr>
- <th scope="col" class="d-flex align-items-center">
- <input id="select-all" class="form-check-input mt-0 me-3" type="checkbox">
- <span>Select all</span>
- </th>
- <th scope="col">Propriété</th>
- <th scope="col">Valeur</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td><input class="form-check-input checkbox" type="checkbox" id="flexCheckDefault"></td>
- <td><label for="flexCheckDefault">info message</label></td>
- <td>Some value ?</td>
- </tr>
- <tr>
- <td><input class="form-check-input checkbox" type="checkbox" id="flexCheckChecked"></td>
- <td><label for="flexCheckChecked">info message</label></td>
- <td>Some value ?</td>
- </tr>
- <tr>
- <td><input class="form-check-input checkbox" type="checkbox" id="flexCheckChecked2"></td>
- <td><label for="flexCheckChecked2">info message</label></td>
- <td>Some value ?</td>
- </tr>
- </tbody>
- </table>
- </form>
- </section>
- </main>
- <script src="/assets/script.js"></script>
- </body>
- </html>
- {{end}}
|