home.gohtml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {{ define "home" -}}
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8">
  6. <title>SQS Redriver</title>
  7. <link rel="stylesheet" href="/assets/styles.css"/>
  8. <link rel="stylesheet" href="/assets/bootstrap.min.css">
  9. </head>
  10. <body>
  11. <main class="container">
  12. <div class="container mt-5">
  13. <nav aria-label="breadcrumb">
  14. <ol class="breadcrumb">
  15. <li class="breadcrumb-item">Home</li>
  16. </ol>
  17. </nav>
  18. </div>
  19. <h1 class="text-3xl font-bold underline">SQS Queues
  20. {{ if .prefix }}
  21. matching prefix: {{ .prefix }}
  22. {{ end}}
  23. </h1>
  24. <table id="home-table" class="table">
  25. <caption>Grayed out queues in the left column are accepted by the given DLQ,
  26. but are not configured to use a DLQ. This is a configuration error in SQS.
  27. </caption>
  28. <thead>
  29. <th scope="col">Queue name</th>
  30. <th scope="col">DLQ name</th>
  31. </thead>
  32. <tbody>
  33. {{ range .rows }}
  34. {{ template "home-row" . }}
  35. {{ end }}
  36. <tr>
  37. <td>
  38. <ul>
  39. <li><a class="text-black-50 bg-light" href="/queue/acquisition-reviews-sender-submit-qa3">acquisition-reviews-sender-submit-qa3</a>
  40. </li>
  41. <li>
  42. <a href="/queue/acquisition-reviews-sender-submit-stg">acquisition-reviews-sender-submit-stg</a>
  43. </li>
  44. </ul>
  45. </td>
  46. <td><a href="/queue/acquisition-reviews-sender-submit-dlq">acquisition-reviews-sender-submit-dlq</a>
  47. </td>
  48. </tr>
  49. <tr>
  50. <td>
  51. <ul>
  52. <li><a href="/queue/payment-payin-work-dlq-qa3">payment-payin-work-dlq-qa3</a></li>
  53. <li><a class="text-black-50 bg-light" href="/queue/payment-payin-work-dlq-stg">payment-payin-work-dlq-std</a>
  54. </li>
  55. </ul>
  56. </td>
  57. <td><a href="/queue/payment-payin-work-dlq-dlq">payment-payin-work-dlq</a></td>
  58. </tr>
  59. </tbody>
  60. </table>
  61. </main>
  62. </body>
  63. </html>
  64. {{ end }}
  65. {{ define "home-row" }}
  66. <tr>
  67. <td>{{ template "home-cell" (index . 0) }}</td>
  68. <td>{{ template "home-cell" (index . 1) }}</td>
  69. </tr>
  70. {{ end }}
  71. {{ define "home-cell" }}
  72. {{ if .Message }}
  73. <em>{{ .Message }}</em>
  74. {{else if .Link }}
  75. <a href="{{ .Link.URL }}">{{ .Link.Text }}</a>
  76. {{ else }}
  77. <ul>
  78. {{ range .Links }}
  79. <li><a href="{{ .URL }}">{{ .Text }}</a></li>
  80. {{ end }}
  81. </ul>
  82. {{end}}
  83. {{ end }}