Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
TelcoDB
Web Frontend
Commits
f7c74421
Verified
Commit
f7c74421
authored
Oct 22, 2019
by
Elias Ojala
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Show multiple IPs correctly
parent
8713bb68
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
3 deletions
+15
-3
views/tld/show.twig
views/tld/show.twig
+15
-3
No files found.
views/tld/show.twig
View file @
f7c74421
...
...
@@ -16,11 +16,23 @@
{%
for
server
in
nameservers
%}
<tr>
<td><a
href=
"/dns/
{{
server
}}
"
>
{{
server
}}
</a></td>
<td
class=
"ipRecord add-parenthesis"
data-ip=
"
{{
nsAddr
[
server
]
.
a
}}
"
>
<a
href=
"/ip/
{{
nsAddr
[
server
]
.
a
}}
"
>
{{
nsAddr
[
server
]
.
a
}}
</a>
<td>
<ul
class=
"py-0 pl-0 list-unstyled"
>
{%
for
ip
in
nsAddr
[
server
]
.
a
%}
<li
class=
"ipRecord"
data-ip=
"
{{
ip
}}
"
>
<a
href=
"/ip/
{{
ip
}}
"
>
{{
ip
}}
</a>
</li>
{%
endfor
%}
</ul>
</td>
<td
class=
"ipRecord add-parenthesis"
data-ip=
"
{{
nsAddr
[
server
]
.
aaaa
}}
"
>
<a
href=
"/ip/
{{
nsAddr
[
server
]
.
aaaa
}}
"
>
{{
nsAddr
[
server
]
.
aaaa
}}
</a>
<ul
class=
"py-0 pl-0 list-unstyled"
>
{%
for
ip
in
nsAddr
[
server
]
.
aaaa
%}
<li
class=
"ipRecord"
data-ip=
"
{{
ip
}}
"
>
<a
href=
"/ip/
{{
ip
}}
"
>
{{
ip
}}
</a>
</li>
{%
endfor
%}
</ul>
</td>
</tr>
{%
endfor
%}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment