BioTorrents.de’s version of Gazelle
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.

ipv4.twig 329B

12345678910
  1. {% macro ajax_ipv4(ip) -%}
  2. <span class="host_{{ ip|replace({'.': '-'}) }}">Resolving host...
  3. <script type="text/javascript">
  4. $(document).ready(function() {
  5. $.get('tools.php?action=get_host&ip={{ ip }}', function(host) {
  6. $('.host_{{ ip|replace({'.': '-'}) }}').html(host);
  7. });
  8. });
  9. </script></span>
  10. {%- endmacro %}