src/main/webapp/WEB-INF/jsp/issue-form.jsp

changeset 409
109850e92e95
parent 380
a14b143330c4
equal deleted inserted replaced
408:179bda934121 409:109850e92e95
137 <td><input id="issue-subject" name="subject" type="text" maxlength="200" required value="<c:out value="${issue.subject}"/>" /></td> 137 <td><input id="issue-subject" name="subject" type="text" maxlength="200" required value="<c:out value="${issue.subject}"/>" /></td>
138 </tr> 138 </tr>
139 <tr> 139 <tr>
140 <th class="vtop"><label for="issue-description"><fmt:message key="issue.description"/></label></th> 140 <th class="vtop"><label for="issue-description"><fmt:message key="issue.description"/></label></th>
141 <td> 141 <td>
142 <textarea id="issue-description" name="description" rows="10"><c:out value="${issue.description}"/></textarea> 142 <c:set var="mde_id" value="issue-description" />
143 <c:set var="mde_name" value="description" />
144 <c:set var="mde_rows" value="10"/>
145 <c:set var="mde_value" value="${issue.description}"/>
146 <%@include file="../jspf/markdown-editor.jspf" %>
143 </td> 147 </td>
144 </tr> 148 </tr>
145 <tr> 149 <tr>
146 <th><label for="issue-assignee"><fmt:message key="issue.assignee"/></label></th> 150 <th><label for="issue-assignee"><fmt:message key="issue.assignee"/></label></th>
147 <td> 151 <td>
191 <td><input id="issue-eta" name="eta" type="date" value="<fmt:formatDate value="${issue.eta}" pattern="yyyy-MM-dd" timeZone="${timezone}" />" /> </td> 195 <td><input id="issue-eta" name="eta" type="date" value="<fmt:formatDate value="${issue.eta}" pattern="yyyy-MM-dd" timeZone="${timezone}" />" /> </td>
192 </tr> 196 </tr>
193 <c:if test="${issue.id ge 0}"> 197 <c:if test="${issue.id ge 0}">
194 <tr> 198 <tr>
195 <th class="vtop"><label for="issue-comment"><fmt:message key="issue.comment"/></label> </th> 199 <th class="vtop"><label for="issue-comment"><fmt:message key="issue.comment"/></label> </th>
196 <td><textarea id="issue-comment" rows="3" name="comment"></textarea></td> 200 <td>
201 <c:set var="mde_id" value="issue-comment" />
202 <c:set var="mde_name" value="comment" />
203 <c:set var="mde_rows" value="3"/>
204 <%@include file="../jspf/markdown-editor.jspf" %>
205 </td>
197 </tr> 206 </tr>
198 </c:if> 207 </c:if>
199 </tbody> 208 </tbody>
200 <tfoot> 209 <tfoot>
201 <tr> 210 <tr>

mercurial