| 45 |
45 |
| 46 <c:if test="${not empty projects}"> |
46 <c:if test="${not empty projects}"> |
| 47 <table class="datatable medskip"> |
47 <table class="datatable medskip"> |
| 48 <colgroup> |
48 <colgroup> |
| 49 <col> |
49 <col> |
| 50 <col style="width: 15%"> |
50 <col style="width: 10%"> |
| 51 <col style="width: 35%"> |
51 <col style="width: 35%"> |
| 52 <col style="width: 30%"> |
52 <col style="width: 30%"> |
| 53 <col style="width: 20%"> |
53 <col style="width: 25%"> |
| 54 </colgroup> |
54 </colgroup> |
| 55 <thead> |
55 <thead> |
| 56 <tr> |
56 <tr> |
| 57 <th></th> |
57 <th></th> |
| 58 <th><fmt:message key="thead.name"/></th> |
58 <th><fmt:message key="thead.name"/></th> |
| 62 </tr> |
62 </tr> |
| 63 </thead> |
63 </thead> |
| 64 <tbody> |
64 <tbody> |
| 65 <c:forEach var="project" items="${projects}"> |
65 <c:forEach var="project" items="${projects}"> |
| 66 <tr> |
66 <tr> |
| 67 <td><a href="./${moduleInfo.modulePath}/edit?id=${project.id}">✎</a></td> |
67 <td style="width: 2em;"><a href="./${moduleInfo.modulePath}/edit?id=${project.id}">✎</a></td> |
| 68 <td><c:out value="${project.name}"/></td> |
68 <td><c:out value="${project.name}"/></td> |
| 69 <td><c:out value="${project.description}"/></td> |
69 <td><c:out value="${project.description}"/></td> |
| 70 <td> |
70 <td> |
| 71 <c:if test="${not empty project.repoUrl}"> |
71 <c:if test="${not empty project.repoUrl}"> |
| 72 <a target="_blank" href="<c:out value="${project.repoUrl}"/>"><c:out value="${project.repoUrl}"/></a> |
72 <a target="_blank" href="<c:out value="${project.repoUrl}"/>"><c:out value="${project.repoUrl}"/></a> |