cosmetic changes, esp. for mobile

wrap host view into container div (otherwise the top headline hangs out of the screen on the left)
make ipv6 addr a bit smaller, so it might better fit on not-so-wide screens
This commit is contained in:
Thomas Waldmann 2013-10-27 13:55:09 +01:00
parent 252a7e5d0b
commit 7ccd293a3e
2 changed files with 3 additions and 2 deletions

View File

@ -10,7 +10,7 @@
<h1>{{request.session.ipv4}}</h1> <h1>{{request.session.ipv4}}</h1>
{% endif %} {% endif %}
{% if request.session.ipv6 %} {% if request.session.ipv6 %}
<h2>{{request.session.ipv6}}</h2> <h3>{{request.session.ipv6}}</h3>
{% endif %} {% endif %}
<p> <p>
nsupdate.info - the Dynamic DNS service you waited for. nsupdate.info - the Dynamic DNS service you waited for.

View File

@ -2,7 +2,7 @@
{% load bootstrap %} {% load bootstrap %}
{% block content %} {% block content %}
<div class="container">
<div class="row"> <div class="row">
<h3>{{ host.get_fqdn }} <br><small><a href="{% url 'overview' %}"><i class="icon-double-angle-left"></i> back to overview</a></small></h3> <h3>{{ host.get_fqdn }} <br><small><a href="{% url 'overview' %}"><i class="icon-double-angle-left"></i> back to overview</a></small></h3>
<div class="col-lg-4"> <div class="col-lg-4">
@ -72,4 +72,5 @@
</script> </script>
</div> </div>
</div> </div>
</div>
{% endblock %} {% endblock %}