summaryrefslogtreecommitdiffstats
path: root/webui_templates
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-09-12 16:25:04 -0400
committerMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-09-12 16:25:04 -0400
commit962a47d34fe6ecf19da4d50bbcb0b2adab82c05a (patch)
tree7a9773aac46c62b8bc87c4b6bc821c74de6c3d9b /webui_templates
parent1d215c67c7404d37ca833acdcfe75b1bd515b592 (diff)
downloadthird_party-cobbler-962a47d34fe6ecf19da4d50bbcb0b2adab82c05a.tar.gz
third_party-cobbler-962a47d34fe6ecf19da4d50bbcb0b2adab82c05a.tar.xz
third_party-cobbler-962a47d34fe6ecf19da4d50bbcb0b2adab82c05a.zip
Adding some additional fields to the systems list in WebUI.
Diffstat (limited to 'webui_templates')
-rw-r--r--webui_templates/system_list.tmpl12
1 files changed, 8 insertions, 4 deletions
diff --git a/webui_templates/system_list.tmpl b/webui_templates/system_list.tmpl
index 91ca65e..f637777 100644
--- a/webui_templates/system_list.tmpl
+++ b/webui_templates/system_list.tmpl
@@ -7,7 +7,9 @@
<tr>
<th class="text">Name</th>
<th class="text">Profile</th>
- <th class="nosort"> </th>
+ <th class="text">MAC</th>
+ <th class="text">IP</th>
+ <th class="text">Hostname</th>
</tr>
</thead>
<tbody>
@@ -21,13 +23,15 @@
#set $evenodd += 1
<tr class="$tr_class">
- <td>${system.name}</td>
<td>
- <a href="$base_url/profile_view?profile=${system.profile}">${system.profile}</a>
+ <a href="$base_url/system_edit?name=${system.name}">${system.name}</a>
</td>
<td>
- <a href="$base_url/system_edit?name=${system.name}">edit</a>
+ <a href="$base_url/profile_view?profile=${system.profile}">${system.profile}</a>
</td>
+ <td> ${system.mac_address} </td>
+ <td> ${system.ip_address} </td>
+ <td> ${system.hostname} </td>
</tr>
#end for
</tbody>