WebHook broker that accepts notifications from multiple platforms and performs simple actions in response
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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>