summaryrefslogtreecommitdiffstats
path: root/webui_templates/profile_list.tmpl
blob: 047714a4494662492f96081662cf9e52908a91c2 (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
#extends cobbler.webui.master

#block body

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


<table class="sortable">
    <thead>
        <caption>Cobbler Profiles</caption>
        <tr>
            <th class="text">Name</th>
            <th class="text">Parent</th>
            <th class="text">Kickstart</th>
        </tr>
    </thead>
    <tbody>
        #set $evenodd = 1
        #for $profile in $profiles
        #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/profile_edit?name=$profile.name">$profile.name</a>
            </td>
            <td>
                #if $profile.distro != "<<inherit>>"
                    <a href="$base_url/distro_edit?name=$profile.distro">$profile.distro</a>
                #else
                    <a href="$base_url/profile_edit?name=$profile.parent">$profile.parent</A>
                #end if
            </td>
            <td>$profile.kickstart</td>
        </tr>
        #end for
    </tbody>
</table>
#end block body