diff options
author | Ken Raffenetti <raffenet@mcs.anl.gov> | 2006-09-27 22:23:58 +0000 |
---|---|---|
committer | Ken Raffenetti <raffenet@mcs.anl.gov> | 2006-09-27 22:23:58 +0000 |
commit | a9abc440cc0c411f9975e1827d71776364bdb659 (patch) | |
tree | 0349ee555b0d16a24ca5f911b3e329fa530a02e5 /src/lib/Server/Hostbase/hostbase/webtemplates/edit.html | |
parent | 82c3087ee2cf83c423127c348b6b5a12461242dd (diff) | |
download | bcfg2-a9abc440cc0c411f9975e1827d71776364bdb659.tar.gz bcfg2-a9abc440cc0c411f9975e1827d71776364bdb659.tar.bz2 bcfg2-a9abc440cc0c411f9975e1827d71776364bdb659.zip |
changes in database models for zone information
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@2335 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib/Server/Hostbase/hostbase/webtemplates/edit.html')
-rw-r--r-- | src/lib/Server/Hostbase/hostbase/webtemplates/edit.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/Server/Hostbase/hostbase/webtemplates/edit.html b/src/lib/Server/Hostbase/hostbase/webtemplates/edit.html index 19094e112..efc308def 100644 --- a/src/lib/Server/Hostbase/hostbase/webtemplates/edit.html +++ b/src/lib/Server/Hostbase/hostbase/webtemplates/edit.html @@ -8,9 +8,8 @@ {% endblock %} {% block sidebar %} -<a href="/hostbase/" class="sidebar">new search</a><br> -<a href="/hostbase/new/" class="sidebar">add a new host</a> -<ul> +{% include "navbar" %} +<ul class="sidebar"> <li><a href="/hostbase/{{ host.id }}/" class="sidebar">host info</a></li> <li><a href="/hostbase/{{ host.id }}/dns/" class="sidebar">detailed dns info</a></li> <li><a href="/hostbase/{{ host.id }}/dns/edit/" class="sidebar">edit dns info</a></li> @@ -47,12 +46,13 @@ div#interface{ <form name="hostdata" action="?sub=true" method="post"> <input type="hidden" name="host" value="{{ host.id }}"> +<input type="hidden" name="hostname" value="{{ host.hostname }}"> <table border="0" width="100%"> <colgroup> <col width="150"> <col width="*"> <tr> <td> <b>hostname</b></td> - <td> <input name="hostname" type="text" value="{{ host.hostname }}"></td></tr> + <td> {{ host.hostname }}</td></tr> <tr> <td> <b>whatami</b></td> <td> <select name="whatami"> |