summaryrefslogtreecommitdiffstats
path: root/webui_templates/distro_list.tmpl
blob: 4fabd48a2ccf46a8c2b2aa43e6ab0ce34c9b6200 (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
#extends cobbler.webui.master
#attr $title = "Cobbler: List of Distributions"

#block body

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


<table class="sortable">
    <thead>
        <caption>Cobbler Distributions</caption>
        <tr>
            <th class="text">Name</th>
            <th class="text">Breed</th>
            <th class="text">Arch</th>
        </tr>
    </thead>
    <tbody>
        #set $evenodd = 1
        #for $distro in $distros
        #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=distro_edit&name=$distro.name">$distro.name</a>
            </td>
            <td>$distro.breed</td>
            <td>$distro.arch</td>
        </tr>
        #end for
    </tbody>
</table>
#end block body