summaryrefslogtreecommitdiff
path: root/templates/admin_angel_types.html
blob: 4f2e3a56fa8213aad3db9e69282fec60d832f0b7 (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
<p>
    Angel types:
</p>
<table>
    <thead>
        <tr>
            <th>
                Name
            </th>
            <th>
                Man
            </th>
            <th>
                Action
            </th>
        </tr>
    </thead>
    <tbody>
        %table%
    </tbody>
</table>
<hr/><h2>Create new Angel type:</h2>
<form action="%link%&action=create" method="post">
    <table>
        <tr>
            <td>
                Name
            </td>
            <td>
                <input type="text" name="name" value="" />
            </td>
        </tr>
        <tr>
            <td>
                Man
            </td>
            <td>
                <input type="text" name="man" value="" />
            </td>
        </tr>
    </table><input type="submit" name="submit" value="Create" />
</form>