summaryrefslogtreecommitdiffstats
path: root/templates/patchwork/patch-form.html
blob: aae673a60c73caf64a3fa103faa782a0574612dc (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91

<div class="patchform"
  style="border: thin solid black; padding-left: 0.8em; margin-top: 2em;">

 <div class="patchform-properties"
  style="float: left; margin-right: 4em;">
  <h3>Properties</h3>
    <table class="form">
     <tr>
      <th>Change state:</th>
      <td>{{ patchform.state }}</td>
     </tr>
     <tr>
      <th>Delegate to:</td>
      <td>{{ patchform.delegate }}</td>
     </tr>
     <tr>
      <td></td>
      <td>
       <input type="submit" value="Update">
      </td>
     </tr>
    </table>
  </form>
 </div>

 <div class="patchform-actions" style="padding-left: 4em;">
  <h3>Actions</h3>
   <table class="form">
    <tr>
     <td>Ack:</td>
     <td>
      <form action="{% url patchwork.views.patch patch=patch.id %}"
       method="post">
       {% csrf_token %}
       <input type="hidden" name="action" value="act"/>
       <input type="submit" value="Ack"/>
      </form>
     </td>
    </tr>
    <tr>
     <td>Create bundle:</td>
     <td>
       {% if createbundleform.name.errors %}
       <span class="errors">{{createbundleform.errors}}</span>
       {% endif %}
      <form method="post">
       {% csrf_token %}
       <input type="hidden" name="action" value="createbundle"/>
        {{ createbundleform.name }}
       <input value="Create" type="submit"/>
      </form>
      </td>
    </tr>
{% if bundles %}
    <tr>
     <td>Add to bundle:</td>
     <td>
      <form action="{% url patchwork.views.bundle.setbundle %}" method="post">
       {% csrf_token %}
       <input type="hidden" name="action" value="add"/>
       <input type="hidden" name="patch_id" value="{{ patch.id }}"/>
       <select name="name"/>
        {% for bundle in bundles %}
         <option value="{{bundle.id}}">{{bundle.name}}</option>
        {% endfor %}
        </select>
       <input value="Add" type="submit"/>
      </form>
     </td>
    </tr>
{% endif %}
    <tr>
     <td>Archive:</td>
     <td>
      <form method="post">
       {% csrf_token %}
       <input type="hidden" name="action" value="archive"/>
       <input type="submit" value="Archive"/>
      </form>
     </td>
    </tr>
   </table>
  </form>

 </div>

 <div style="clear: both;">
 </div>
</div>