diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-03-16 22:17:32 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-03-16 22:17:32 -0400 |
commit | cf5182ee4bd70da910a6aa0bb3dd2a3d2e05c82c (patch) | |
tree | 1308284eb56945c6c8dcc76dc9719bff5d4055e0 /app/Template | |
parent | 50f98abfd3a9843c8e4ac0433a4fbf41757be46e (diff) |
Add unique css class name for board table
Diffstat (limited to 'app/Template')
-rw-r--r-- | app/Template/board/show.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/Template/board/show.php b/app/Template/board/show.php index f1607d26..6f81fe2e 100644 --- a/app/Template/board/show.php +++ b/app/Template/board/show.php @@ -1,8 +1,9 @@ <div id="board-container"> <?php if (isset($not_editable)): ?> - <table id="board"> + <table id="board" class="board-project-<?= $project['id'] ?>"> <?php else: ?> <table id="board" + class="board-project-<?= $project['id'] ?>" data-project-id="<?= $project['id'] ?>" data-check-interval="<?= $board_private_refresh_interval ?>" data-save-url="<?= $this->u('board', 'save', array('project_id' => $project['id'])) ?>" |