diff options
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/view/svc_domain/dns.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/httemplate/view/svc_domain/dns.html b/httemplate/view/svc_domain/dns.html index 88a9bda95..11aba825f 100644 --- a/httemplate/view/svc_domain/dns.html +++ b/httemplate/view/svc_domain/dns.html @@ -21,6 +21,7 @@ DNS records <th CLASS="grid" BGCOLOR="#cccccc">Zone</th> <th CLASS="grid" BGCOLOR="#cccccc">Type</th> <th CLASS="grid" BGCOLOR="#cccccc">Data</th> + <th CLASS="grid" BGCOLOR="#cccccc">TTL</th> </tr> % foreach my $domain_record ( @records ) { @@ -32,7 +33,9 @@ DNS records <tr> <td CLASS="grid" BGCOLOR="<% $bgcolor %>"><% $domain_record->reczone %></td> <td CLASS="grid" BGCOLOR="<% $bgcolor %>"><% $type %></td> - <td CLASS="grid" BGCOLOR="<% $bgcolor %>"><% $domain_record->recdata %> + <td CLASS="grid" BGCOLOR="<% $bgcolor %>"><% $domain_record->recdata %></td> + <td CLASS="grid" BGCOLOR="<% $bgcolor %>"><% $domain_record->ttl %></td> + <td CLASS="grid" BGCOLOR="<% $bgcolor %>"> % unless ( $domain_record->rectype eq 'SOA' % || ! $FS::CurrentUser::CurrentUser->access_right('Edit domain nameservice') @@ -66,6 +69,7 @@ DNS records % } </SELECT> <INPUT TYPE="text" NAME="recdata"> + <INPUT TYPE="text" NAME="ttl" size="6"> <INPUT TYPE="submit" VALUE="Add record"> </FORM> |