WebHook broker that accepts notifications from multiple platforms and performs simple actions in response
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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>