Add unique css class name for board table

This commit is contained in:
Frederic Guillot 2015-03-16 22:17:32 -04:00
parent 50f98abfd3
commit cf5182ee4b
1 changed files with 2 additions and 1 deletions

View File

@ -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'])) ?>"