|
19 | 19 | </small> |
20 | 20 | </h1> |
21 | 21 | <div id="tw-content-title-actionbuttons"> |
22 | | - <a class="btn btn-sm btn-primary" data-toggle="collapse" |
23 | | - href="#collapseDescription" role="button" aria-expanded="false" aria-controls="collapseExample"> |
24 | | - <div th:text="#{project.show.description}">Project Description</div> |
25 | | - </a> |
26 | | - <a class="btn btn-sm btn-secondary" role="button" href="#" |
27 | | - th:href="@{/project/{thisProjectId}/edit(thisProjectId=${thisProject.id})}"> |
28 | | - <i class="fas fa-edit"></i> |
29 | | - <span th:text="#{project.show.edit}">Edit Project</span> |
30 | | - </a> |
31 | | - <a class="btn btn-sm btn-secondary" role="button" href="#" |
32 | | - th:href="@{/project/{thisProjectId}/delete(thisProjectId=${thisProject.id})}"> |
33 | | - <i class="fas fa-trash-alt"></i> |
34 | | - <span th:text="#{project.show.delete}">Delete Project</span> |
35 | | - </a> |
36 | | - <a class="btn btn-sm btn-secondary" role="button" href="#" |
37 | | - th:href="@{/project/{thisProjectId}/project/add(thisProjectId=${thisProject.id})}"> |
38 | | - <i class="fas fa-plus-square"></i> |
39 | | - <span th:text="#{layout.page.addProject}">Add a Project</span> |
40 | | - </a> |
41 | | - <a class="btn btn-sm btn-secondary" role="button" href="#" |
42 | | - th:href="@{/project/{thisProjectId}/task/add(thisProjectId=${thisProject.id})}"> |
43 | | - <i class="fas fa-plus-square"></i> |
44 | | - <span th:text="#{project.show.addTask}">Add a Task</span> |
45 | | - </a> |
| 22 | + <div class="row"> |
| 23 | + <div class="col-md-3 mb-3"> |
| 24 | + <a class="btn btn-block btn-primary" role="button" href="#" |
| 25 | + th:href="@{/project/{thisProjectId}/task/add(thisProjectId=${thisProject.id})}"> |
| 26 | + <i class="fas fa-plus-square"></i> |
| 27 | + <span th:text="#{project.show.addTask}">Add a Task</span> |
| 28 | + </a> |
| 29 | + </div> |
| 30 | + <div class="col-md-3 mb-3"> |
| 31 | + <a class="btn btn-block btn-secondary" role="button" href="#" |
| 32 | + th:href="@{/project/{thisProjectId}/project/add(thisProjectId=${thisProject.id})}"> |
| 33 | + <i class="fas fa-plus-square"></i> |
| 34 | + <span th:text="#{layout.page.addProject}">Add a Project</span> |
| 35 | + </a> |
| 36 | + </div> |
| 37 | + <div class="col-md-3 mb-3"> |
| 38 | + <a class="btn btn-block btn-dark" role="button" href="#" |
| 39 | + th:href="@{/project/{thisProjectId}/edit(thisProjectId=${thisProject.id})}"> |
| 40 | + <i class="fas fa-edit"></i> |
| 41 | + <span th:text="#{project.show.edit}">Edit Project</span> |
| 42 | + </a> |
| 43 | + </div> |
| 44 | + <div class="col-md-3 mb-3"> |
| 45 | + <a class="btn btn-block btn-dark" role="button" href="#" |
| 46 | + th:href="@{/project/{thisProjectId}/delete(thisProjectId=${thisProject.id})}"> |
| 47 | + <i class="fas fa-trash-alt"></i> |
| 48 | + <span th:text="#{project.show.delete}">Delete Project</span> |
| 49 | + </a> |
| 50 | + </div> |
| 51 | + </div> |
| 52 | + <div class="row"> |
| 53 | + <div class="col-md-12 mb-12"> |
| 54 | + <a class="btn btn-block btn-secondary" data-toggle="collapse" |
| 55 | + href="#collapseDescription" role="button" aria-expanded="false" aria-controls="collapseExample"> |
| 56 | + <div th:text="#{project.show.description}">Project Description</div> |
| 57 | + </a> |
| 58 | + </div> |
| 59 | + </div> |
46 | 60 | </div> |
47 | 61 | <div class="collapse" id="collapseDescription"> |
48 | 62 | <div class="card card-body" th:text="${thisProject.description}"></div> |
|
0 commit comments