summaryrefslogtreecommitdiffstats
path: root/webui_templates/ksfile_edit.tmpl
blob: 630344215d8412ad6f8e6bda01f8bc582496c977 (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
65
#extends cobbler.webui.master
##attr $title = "Cobbler: Edit Kickstart File $ksfile"

#block body

#if $editable != True
<blockquote>
NOTE: You do not have permission to make changes to this
kickstart template and can only read it.  It is possible that
other Cobbler users has secured permissions on Cobbler
profiles/systems that depend on this template -- changing this
template would ultimately affect those profile/system records which
you do not have access to.  Alternatively, you may not have access
to edit *any* kickstart templates.  Contact your Cobbler server administrator
if you need to resolve this.
</blockquote>
</br>
#end if

<form method="post" action="$base_url?mode=ksfile_save">
    <input type="hidden" name="name" value="$name"/>
    <fieldset id="cform">
    <legend>Edit Kickstart Template</legend>

    <table>
    <tr><td colspan="2">
    <label for="ksdata">Editing: $name</label>
    <td></tr> 
    
    <tr><td colspan="2">

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

    </td></tr>
       

    #if $deleteable
    <tr><td>
    <label>Delete</label>
    </td>
    <td>
    <input type="checkbox" name="delete1" value="delete1">Yes
    <input type="checkbox" name="delete2" value="delete2">Really
    <p class="context-tip">Check both buttons and click save to delete this object</p>
    </td></tr>
    #else
    <tr><td colspan="2">
    NOTE: This kickstart template is currently in-use.
    </td></tr>
    #end if

    <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