diff --git a/assets/css/app.css b/assets/css/app.css
index fb0bba983..ca9f56946 100644
--- a/assets/css/app.css
+++ b/assets/css/app.css
@@ -426,6 +426,10 @@ nav .active a {
text-align: right;
}
+.public-board {
+ margin-top: 5px;
+}
+
#board th a {
text-decoration: none;
font-size: 150%;
diff --git a/locales/fr_FR/translations.php b/locales/fr_FR/translations.php
index 7d021fcc7..4e38e052e 100644
--- a/locales/fr_FR/translations.php
+++ b/locales/fr_FR/translations.php
@@ -180,4 +180,5 @@ return array(
'%d closed tasks' => '%d tâches terminées',
'no task for this project' => 'aucune tâche pour ce projet',
'Public link' => 'Accès public',
+ 'There is no column in your project!' => 'Il n\'y a aucune colonne dans votre projet !',
);
diff --git a/locales/pl_PL/translations.php b/locales/pl_PL/translations.php
index 2e6211ed2..b1ecd1eda 100644
--- a/locales/pl_PL/translations.php
+++ b/locales/pl_PL/translations.php
@@ -180,4 +180,8 @@ return array(
'%d closed tasks' => '%d zamkniętych zadań',
'no task for this project' => 'brak zadań dla tego projektu',
'Public link' => 'Link publiczny',
+
+ /* Missing translations:
+ 'There is no column in your project!' => '',
+ */
);
diff --git a/templates/board_index.php b/templates/board_index.php
index abd511b7b..274e82270 100644
--- a/templates/board_index.php
+++ b/templates/board_index.php
@@ -21,44 +21,50 @@
-
-
-
-
- |
- +
- = Helper\escape($column['title']) ?>
- |
-
-
-
-
-
-
-
-
+
+ = t('There is no column in your project!') ?>
+
- #= $task['id'] ?> -
-
-
-
- = t('Assigned to %s', $task['username']) ?>
-
- = t('No body assigned') ?>
-
-
-
-
- = Helper\escape($task['title']) ?>
-
-
-
-
+
+
+
+
+ |
+ +
+ = Helper\escape($column['title']) ?>
+ |
-
-
-
-
+ |
+
+
+
+
+
+
+
+ #= $task['id'] ?> -
+
+
+
+ = t('Assigned to %s', $task['username']) ?>
+
+ = t('No body assigned') ?>
+
+
+
+
+ = Helper\escape($task['title']) ?>
+
+
+
+
+
+ |
+
+
+
+
+
diff --git a/templates/board_public.php b/templates/board_public.php
index d01bae0f2..ac9e80ae8 100644
--- a/templates/board_public.php
+++ b/templates/board_public.php
@@ -1,41 +1,45 @@
-
+
-
-
-
-
- |
- = Helper\escape($column['title']) ?>
- |
-
-
-
-
-
-
-
-
-
- #= $task['id'] ?> -
-
-
-
- = t('Assigned to %s', $task['username']) ?>
-
- = t('No body assigned') ?>
-
-
-
-
- = Helper\escape($task['title']) ?>
-
-
-
-
+
+ = t('There is no column in your project!') ?>
+
+
+
+
+
+ |
+ = Helper\escape($column['title']) ?>
+ |
-
-
-
-
+ |
+
+
+
+
+
+
+
+ #= $task['id'] ?> -
+
+
+
+ = t('Assigned to %s', $task['username']) ?>
+
+ = t('No body assigned') ?>
+
+
+
+
+ = Helper\escape($task['title']) ?>
+
+
+
+
+
+ |
+
+
+
+
\ No newline at end of file