summaryrefslogtreecommitdiffstats
path: root/webui_templates/system_list.tmpl
blob: e74f313f4fcd3e5e75f59e1fdf6d8d2277492b51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#extends cobbler.webui.master

#block body
<table class="sortable">
    <thead>
        <caption>Cobbler Systems</caption>
        <tr>
            <th class="text">Name</th>
            <th class="text">Profile</th>
            ## FIXME: how to handle for multiple interface listing? <th class="text">MAC</th>
            ## <th class="text">IP</th>
            ## <th class="text">Hostname</th>
        </tr>
    </thead>
    <tbody>
        #set $evenodd = 1
        #for $system in $systems
        #if $evenodd % 2 == 0
            #set $tr_class = "roweven"
        #else
            #set $tr_class = "rowodd"
        #end if
        #set $evenodd += 1

        <tr class="$tr_class">
            <td>
                <a href="$base_url/system_edit?name=${system.name}">${system.name}</a>
            </td>
            <td>
                <a href="$base_url/profile_edit?name=${system.profile}">${system.profile}</a>
            </td>
            ## <td> ${system.mac_address} </td>
            ## <td> ${system.ip_address} </td>
            ## <td> ${system.hostname} </td>
        </tr>
        #end for
    </tbody>
</table>
#end block body