diff options
author | Dan McGee <dan@archlinux.org> | 2011-11-15 15:15:08 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-11-15 15:15:08 -0600 |
commit | 64f5799ef7fb76ed0e8759359b4ee8127e8903f5 (patch) | |
tree | e14a1190a97a00add3eb8ec387b8ef74383b1158 | |
parent | 0344f8ad564644c50203985255fab1d053aed463 (diff) |
Fix up empty table display on dev dashboard
Fix the colspan for the existing tables, and add a notice for the new
signoffs table which did not have one.
Thanks-to: Andrea Scarpino <andrea@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r-- | templates/devel/index.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/templates/devel/index.html b/templates/devel/index.html index 06cf10ab..0f0ded38 100644 --- a/templates/devel/index.html +++ b/templates/devel/index.html @@ -33,7 +33,7 @@ <td>{{ pkg.last_update|date }}</td> </tr> {% empty %} - <tr class="empty"><td colspan="4"><em>No flagged packages to display</em></td></tr> + <tr class="empty"><td colspan="6"><em>No flagged packages to display</em></td></tr> {% endfor %} </tbody> </table> @@ -91,7 +91,7 @@ <td>{{ todo.incomplete_count }}</td> </tr> {% empty %} - <tr class="empty"><td colspan="3"><em>No package todo lists to display</em></td></tr> + <tr class="empty"><td colspan="6"><em>No package todo lists to display</em></td></tr> {% endfor %} </tbody> </table> @@ -133,6 +133,8 @@ {% endfor %} </ul></td> </tr> + {% empty %} + <tr class="empty"><td colspan="7"><em>No packages you maintain or have packaged need signoffs</em></td></tr> {% endfor %} </tbody> </table> |