Commit f2934fb6 by Bence Dányi

webui: toggle IPv6/IPv4 host, if possible

parent a154a24c
...@@ -12,6 +12,20 @@ $(function() { ...@@ -12,6 +12,20 @@ $(function() {
$('a').click(function(e) { $('a').click(function(e) {
e.stopPropagation(); e.stopPropagation();
}); });
$('.host-toggle').click(function(e){
e.preventDefault();
if($(this).find('.v4').is(':hidden')){
$(this).find('.v4').show();
$(this).find('.v6').hide();
$(this).parent().next().find('.host').show();
$(this).parent().next().find('.ipv4host').hide();
} else {
$(this).find('.v6').show();
$(this).find('.v4').hide();
$(this).parent().next().find('.host').hide();
$(this).parent().next().find('.ipv4host').show();
}
})
$('.delete-template').click(function(e) { $('.delete-template').click(function(e) {
e.preventDefault(); e.preventDefault();
e.stopPropagation(); e.stopPropagation();
......
...@@ -419,6 +419,15 @@ body > footer { ...@@ -419,6 +419,15 @@ body > footer {
} }
} }
.host-toggle {
.v6 {
display: none;
}
}
.ipv4host {
display: none;
}
@media (max-width: 900px) { @media (max-width: 900px) {
#content { #content {
width: 100%; width: 100%;
......
...@@ -37,8 +37,8 @@ ...@@ -37,8 +37,8 @@
</td> </td>
</tr> </tr>
<tr> <tr>
<th>{% trans "IP" %}:</th> <th>{% trans "Host" %}{% if i.is_ipv6 %} (<a href="#" class="host-toggle"><span class="v4">IPv4</span><span class="v6">IPv6</span></a>){% endif %}:</th>
<td>{{ i.hostname }}</td> <td><span class="host">{{ i.hostname }}</span><span class="ipv4host">{{i.hostname_v4}}</span></td>
</tr> </tr>
{% if i.nat %}<tr> {% if i.nat %}<tr>
<th>{% trans "Port" %}:</th> <th>{% trans "Port" %}:</th>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment