Add warning for messages
This commit is contained in:
parent
b8674a126f
commit
f78a082ad3
@ -50,10 +50,10 @@
|
||||
.row.mt-5
|
||||
.col
|
||||
h4 = t("messages.plural").capitalize
|
||||
- if !@puzzles.size
|
||||
- if @puzzles.size == 0
|
||||
.row
|
||||
.col.alert.alert-danger
|
||||
| You first need to add a puzzle before converting messages to completions
|
||||
= t("messages.warning")
|
||||
table.table.table-striped.table-hover
|
||||
thead
|
||||
tr
|
||||
@ -82,7 +82,7 @@
|
||||
td
|
||||
= message.text
|
||||
td
|
||||
- if @puzzles.size
|
||||
- if @puzzles.size > 0
|
||||
a.btn.btn-sm.btn-secondary href=contest_message_convert_path(@contest, message) style="white-space: nowrap;"
|
||||
= t("helpers.buttons.add_completion")
|
||||
- else
|
||||
|
@ -140,6 +140,7 @@ en:
|
||||
title: "New completion"
|
||||
plural: "messages"
|
||||
singular: "message"
|
||||
warning: "You first need to add a puzzle before converting messages to completions."
|
||||
nav:
|
||||
users: "Users"
|
||||
home: "Home"
|
||||
|
@ -111,6 +111,7 @@ fr:
|
||||
title: "Ajout d'une complétion"
|
||||
plural: "messages"
|
||||
singular: "message"
|
||||
warning: "Au moins un puzzle doit être ajouté avant de pouvoir convertir des messages en complétions."
|
||||
nav:
|
||||
users: "Utilisateur.ices"
|
||||
home: "Accueil"
|
||||
|
Loading…
x
Reference in New Issue
Block a user