Skip to main content
summaryrefslogtreecommitdiffstats
blob: 89168bf76e1b3ff677758ff01cfb68cdbea1825b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?widgets?>		
	<label>Title</label> <input type="text" id="ats_title" name="title"/><br/>
	<label>Description</label> <input type="text" id="desc" /><br/>
   <label>Actionable Item</label> <input placeholder="type to filter" type="text" id="actionableItems" list="actionableItemList" /><br/>
   <label>Change Type</label>
	<select>
		<option value="Improvement">Improvement</option>
		<option value="Problem">Problem</option>
		<option value="Refinement">Refinement</option>
		<option value="Support">Support</option>
   </select><br />
   <label>Priority</label>
   	<input type="radio" name="priority" value="1">1 (High)
  		<input type="radio" name="priority" value="2">2 
  		<input type="radio" name="priority" value="3">3
  		<input type="radio" name="priority" value="4">4
  		<input type="radio" name="priority" value="5">5 (Low)<br/>
   <label>Deadline</label> <input type="date" name="deadline">
   

Back to the top