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

#block body

#if $editable != True
<blockquote>
NOTE: You do not have permission to create new kickstart templates.
</blockquote>
</br>
#end if

<form method="post" action="$base_url?mode=ksfile_save">
    <fieldset id="cform">
        <legend>Create New Kickstart Template</legend>

        <input type="hidden" name="isnew" value="1"/>

    <table>
    <tr>
    <td>
    <label for="name">Filename</label>
    </td>
    <td>
    <input type="text" size="128" style="width: 150px;" name="name" id="name"
    <p class="context-tip">Example:  foo.ks (to be saved in /var/lib/cobbler/kickstarts/)</p>
    </td>
    </tr>


    <tr><td colspan="2">

        <pre><textarea rows="40" cols="120" name="ksdata" id="ksdata">$ksdata</textarea></pre>
        <br/>

    </td></tr>

    <tr><td colspan="2">
        #if $editable == True
            <input type="submit" name="submit" value="Save"/>
            <input type="reset" name="reset" value="Reset"/>
        #end if
    </td></tr>
    </table>

    </fieldset>
</form>

#end block body