]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Add the zone timers to the XSL
authorPaul Frieden <pfrieden@verizonmedia.com>
Mon, 4 Nov 2019 22:49:55 +0000 (16:49 -0600)
committerOndřej Surý <ondrej@isc.org>
Tue, 12 May 2020 06:48:01 +0000 (08:48 +0200)
bin/named/bind9.xsl

index f36927794fb6e8b8acba24fb7c704e75520f9433..ba0ad274871daadb5a4171c5c19bf246e9a9c648 100644 (file)
           <xsl:for-each select="views/view">
             <h3>Zones for View <xsl:value-of select="@name"/></h3>
             <table class="zones">
-              <thead><tr><th>Name</th><th>Class</th><th>Type</th><th>Serial</th></tr></thead>
+              <thead><tr><th>Name</th><th>Class</th><th>Type</th><th>Serial</th><th>Loaded</th><th>Expires</th><th>Refresh</th></tr></thead>
               <tbody>
                 <xsl:for-each select="zones/zone">
                   <xsl:variable name="css-class15">
                       <td><xsl:value-of select="@name"/></td>
                       <td><xsl:value-of select="@rdataclass"/></td>
                       <td><xsl:value-of select="type"/></td>
-                      <td><xsl:value-of select="serial"/></td></tr>
+                      <td><xsl:value-of select="serial"/></td>
+                      <td><xsl:value-of select="loaded"/></td>
+                      <td><xsl:value-of select="expires"/></td>
+                      <td><xsl:value-of select="refresh"/></td></tr>
                 </xsl:for-each>
               </tbody>
             </table>