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.
12345678910 |
- {% macro ajax_ipv4(ip) -%}
- <span class="host_{{ ip|replace({'.': '-'}) }}">Resolving host...
- <script type="text/javascript">
- $(document).ready(function() {
- $.get('tools.php?action=get_host&ip={{ ip }}', function(host) {
- $('.host_{{ ip|replace({'.': '-'}) }}').html(host);
- });
- });
- </script></span>
- {%- endmacro %}
|