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.

32 lines
937 B

  1. <div class="modal-body">
  2. <h3>Ping #{{ ping.n }}</h3>
  3. <div class="row">
  4. <div class="col-sm-6">
  5. <p>
  6. <strong>Time Received</strong>
  7. <code>{{ ping.created.isoformat }}</code>
  8. </p>
  9. <p>
  10. <strong>Source</strong>
  11. {% if ping.scheme == "email" %}
  12. {{ ping.ua }}
  13. {% else %}
  14. {{ ping.scheme|upper }} {{ ping.method }} from {{ ping.remote_addr }}
  15. {% endif %}
  16. </p>
  17. </div>
  18. {% if ping.scheme != "email" %}
  19. <div class="col-sm-6">
  20. <p>
  21. <strong>User Agent</strong>
  22. <span class="ua">{{ ping.ua }}</span>
  23. </p>
  24. </div>
  25. {% endif %}
  26. </div>
  27. {% if check.last_ping_body %}
  28. <h4>Request Body</h4>
  29. <pre>{{ check.last_ping_body }}</pre>
  30. {% endif %}
  31. </div>