diff --git a/client/templates/admin/milestones/overview.html b/client/templates/admin/milestones/overview.html index b14334976ce2b6dcc49201ce7fb50389842bef92..47098df02afcdc39c083954aa5d8cd3095147cdc 100644 --- a/client/templates/admin/milestones/overview.html +++ b/client/templates/admin/milestones/overview.html @@ -22,11 +22,12 @@ <thead> <tr> <th data-field="id">Version Code</th> - <th data-field="project-name">Version Name</th> + <th data-field="project-version">Version Name</th> <th data-field="project-name">Title</th> - <th data-field="project-name">Due Date</th> - <th data-field="project-name">Completion Date</th> - <th data-field="project-name">Status</th> + <th data-field="project-due_date">Due Date</th> + <th data-field="project-completion_date">Completion Date</th> + <th data-field="project-status">Status</th> + <th data-field="actions"></th> </tr> </thead> @@ -55,7 +56,7 @@ {% endfor %} {% else %} <tr> - <td colspan="2" class="center-align">No milestones available</td> + <td colspan="7" class="center-align">No milestones available</td> </tr> {% endif %} </tbody> diff --git a/client/templates/admin/roadmaps/overview.html b/client/templates/admin/roadmaps/overview.html index ce97270b4f342e50084786d81e040a803099a327..ff4c3c9f34361cd4975bf32b3e09462efc934f4d 100644 --- a/client/templates/admin/roadmaps/overview.html +++ b/client/templates/admin/roadmaps/overview.html @@ -23,6 +23,7 @@ <tr> <th data-field="id">ID</th> <th data-field="project-name">Project Name</th> + <th data-field="actions"></th> </tr> </thead> @@ -43,7 +44,7 @@ {% endfor %} {% else %} <tr> - <td colspan="2" class="center-align">No roadmaps available</td> + <td colspan="3" class="center-align">No roadmaps available</td> </tr> {% endif %} </tbody> diff --git a/client/templates/admin/subtasks/overview.html b/client/templates/admin/subtasks/overview.html index a52bd9b867dcb3f7b49b743fb57a941770f195bc..4799824b87db0a7c771f126f3c92d5a9bb644121 100644 --- a/client/templates/admin/subtasks/overview.html +++ b/client/templates/admin/subtasks/overview.html @@ -23,7 +23,8 @@ <tr> <th data-field="id">ID</th> <th data-field="project-name">Title</th> - <th data-field="project-name">Status</th> + <th data-field="project-status">Status</th> + <th data-field="actions"></th> </tr> </thead> @@ -48,7 +49,7 @@ {% endfor %} {% else %} <tr> - <td colspan="2" class="center-align">No sub tasks available</td> + <td colspan="4" class="center-align">No sub tasks available</td> </tr> {% endif %} </tbody> diff --git a/client/templates/admin/tasks/overview.html b/client/templates/admin/tasks/overview.html index b6372c5d45ca8b8bd46ceccfa444e1927fd38dc9..28e6248d484bd7e88feb7f2b76f9adb876d07ab2 100644 --- a/client/templates/admin/tasks/overview.html +++ b/client/templates/admin/tasks/overview.html @@ -23,7 +23,8 @@ <tr> <th data-field="id">ID</th> <th data-field="project-name">Title</th> - <th data-field="project-name">Status</th> + <th data-field="project-status">Status</th> + <th data-field="actions"></th> </tr> </thead> @@ -49,7 +50,7 @@ {% endfor %} {% else %} <tr> - <td colspan="2" class="center-align">No tasks available</td> + <td colspan="4" class="center-align">No tasks available</td> </tr> {% endif %} </tbody>