summaryrefslogtreecommitdiffstats
path: root/webui_templates/system_list.tmpl
blob: 6ab5face0150dcabefb97830a38a169c119464e0 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#extends cobbler.webui.master

#block body

    ## ==== BEGIN PAGE NAVIGATION ====
    #set global what="system"
    #include "/usr/share/cobbler/webui_templates/paginate.tmpl"
    ## ==== END PAGE NAVIGATION ====

<table class="sortable">

    <thead>
        <caption>Cobbler Systems</caption>
        <tr>
            <th class="text">Name</th>
            <th class="text">Profile</th>
            <th class="text">Kickstart</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?mode=system_edit&name=${system.name}">${system.name}</a>
            </td>
            <td>
                <a href="$base_url?mode=profile_edit&name=${system.profile}">${system.profile}</a>
            </td>
            ## <td> ${system.mac_address} </td>
            ## <td> ${system.ip_address} </td>
            ## <td> ${system.hostname} </td>

            <td>
                #set $kick = $system.kickstart
                #if $kick.startswith("http://") or $kick.startswith("ftp://") or $kick.startswith("nfs://")
                   #if not $kick.startswith("nfs://")
                       <A HREF="$kick">$kick</A>
                   #else
                       $kick
                   #end if
                #else
                   #set $name = $system.name
                   #set $pname = $system.profile
                   <A HREF="/cblr/svc/op/ks/system/$name">(view rendered)</A>&nbsp;
                   #if $kick != "<<inherit>>" and $kick != ""
                       <A HREF="$base_url?mode=ksfile_edit&name=$kick">(edit template)</A>
                   #end if 
                #end if
            </td>
        </tr>


        #end for
    </tbody>
</table>
#end block body