src/main/webapp/WEB-INF/dynamic_fragments/project-form.jsp

changeset 72
0646c14e36fb
parent 70
821c4950b619
--- a/src/main/webapp/WEB-INF/dynamic_fragments/project-form.jsp	Fri May 22 16:21:31 2020 +0200
+++ b/src/main/webapp/WEB-INF/dynamic_fragments/project-form.jsp	Fri May 22 16:21:59 2020 +0200
@@ -43,23 +43,25 @@
         <tbody>
         <tr>
             <th><fmt:message key="thead.name"/></th>
-            <td><input name="name" type="text" maxlength="20" required value="${project.name}"/> </td>
+            <td><input name="name" type="text" maxlength="20" required value="${project.name}"/></td>
         </tr>
         <tr>
             <th class="vtop"><fmt:message key="thead.description"/></th>
-            <td><input type="text" name="description" maxlength="200" value="${project.description}" /> </td>
+            <td><input type="text" name="description" maxlength="200" value="${project.description}"/></td>
         </tr>
         <tr>
             <th><fmt:message key="thead.repoUrl"/></th>
-            <td><input name="repoUrl" type="url" maxlength="50" value="${project.repoUrl}" /> </td>
+            <td><input name="repoUrl" type="url" maxlength="50" value="${project.repoUrl}"/></td>
         </tr>
         <tr>
             <th><fmt:message key="thead.owner"/></th>
             <td>
                 <select name="owner">
-                    <option value="-1"><fmt:message key="placeholder.null-owner" /> </option>
+                    <option value="-1"><fmt:message key="placeholder.null-owner"/></option>
                     <c:forEach var="user" items="${users}">
-                        <option <c:if test="${not empty project.owner and user.id eq project.owner.id}">selected</c:if> value="${user.id}"><c:out value="${user.displayname}"/></option>
+                        <option
+                                <c:if test="${not empty project.owner and user.id eq project.owner.id}">selected</c:if>
+                                value="${user.id}"><c:out value="${user.displayname}"/></option>
                     </c:forEach>
                 </select>
             </td>
@@ -68,9 +70,10 @@
         <tfoot>
         <tr>
             <td colspan="2">
-                <input type="hidden" name="id" value="${project.id}" />
-                <a href="./${moduleInfo.modulePath}/" class="button"><fmt:message bundle="${lightpit_bundle}" key="button.cancel"/></a>
-                <button type="submit"><fmt:message bundle="${lightpit_bundle}" key="button.okay" /></button>
+                <input type="hidden" name="id" value="${project.id}"/>
+                <a href="./${moduleInfo.modulePath}/" class="button"><fmt:message bundle="${lightpit_bundle}"
+                                                                                  key="button.cancel"/></a>
+                <button type="submit"><fmt:message bundle="${lightpit_bundle}" key="button.okay"/></button>
             </td>
         </tr>
         </tfoot>

mercurial