WebHook broker that accepts notifications from multiple platforms and performs simple actions in response
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

admin.html 512B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Line and Sinker Administration</title>
  5. </head>
  6. <body>
  7. <h1>Determine hash</h1>
  8. <form action="/admin/hash" method="post">
  9. <label>Service: <input type="text" name="service"></label>
  10. <label>Identifier: <input type="text" name="identifier"></label>
  11. <input type="submit" value="Calculate">
  12. </form>
  13. <h1>Recent events</h1>
  14. {% for item in events|reverse %}
  15. <pre>{{ item|tojson(indent=4) }}</pre>
  16. {% endfor %}
  17. </body>
  18. </html>