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.

58 lines
1.4 KiB

  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. </div>
  10. {% if ping.remote_addr %}
  11. <div class="col-sm-6">
  12. <p>
  13. <strong>Client IP</strong>
  14. {{ ping.remote_addr }}
  15. </p>
  16. </div>
  17. {% endif %}
  18. {% if ping.scheme %}
  19. <div class="col-sm-6">
  20. <p>
  21. <strong>Protocol</strong>
  22. {{ ping.scheme }}
  23. </p>
  24. </div>
  25. {% endif %}
  26. {% if ping.method %}
  27. <div class="col-sm-6">
  28. <p>
  29. <strong>Method</strong>
  30. {{ ping.method }}
  31. </p>
  32. </div>
  33. {% endif %}
  34. {% if ping.scheme == "email" %}
  35. <div class="col-sm-6">
  36. <p>
  37. <strong>From</strong>
  38. {{ ping.ua }}
  39. </p>
  40. </div>
  41. {% else %}
  42. <div class="col-sm-12">
  43. <p>
  44. <strong>User Agent</strong>
  45. <span class="ua">{{ ping.ua }}</span>
  46. </p>
  47. </div>
  48. {% endif %}
  49. </div>
  50. {% if ping.body %}
  51. <h4>Request Body</h4>
  52. <pre>{{ ping.body }}</pre>
  53. {% endif %}
  54. </div>