JelleG Posted August 30, 2016 Share Posted August 30, 2016 Hi, I want to edit the Manage DNS template (/templates/template/clientareadomaindns.tpl). I want to add TTL (domain expire), but I can not get it right. I currently have this code, but that does not seem to work. How can I make this work? CODE: <table class="table table-condensed" id="tableDomainsList"> <thead> <tr> <td><select class="form-control input-sm" name="dnsrecordexpire[]"> <option value="60" {if $dnsrecord.expire eq "60"} selected="selected"{/if}>1 Min.</option> <option value="300" {if $dnsrecord.expire eq "300"} selected="selected"{/if}>5 Min.</option> <option value="3600" {if $dnsrecord.expire eq "3600"} selected="selected"{/if}>1 H</option> <option value="86400"{if $dnsrecord.expire eq "86400"} selected="selected"{/if}>1 Day</option> </select></td> </tr> </thead> </table> 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.