WebHook broker that accepts notifications from multiple platforms and performs simple actions in response
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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>