Implement tooltips for suppliers table view
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
<%
|
||||
rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : ""
|
||||
rerun_opts = rerun.to_s.strip.empty? ? "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} features" : "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} #{rerun}"
|
||||
std_opts = "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} --strict --tags ~@wip"
|
||||
%>
|
||||
default: <%= std_opts %> features
|
||||
wip: --tags @wip:3 --wip features
|
||||
rerun: <%= rerun_opts %> --format rerun --out rerun.txt --strict --tags ~@wip
|
||||
+4
-1
@@ -12,7 +12,7 @@ development:
|
||||
# Warning: The database defined as "test" will be erased and
|
||||
# re-generated from your development database when you run "rake".
|
||||
# Do not set this db to the same as development or production.
|
||||
test:
|
||||
test: &test
|
||||
adapter: sqlite3
|
||||
database: db/test.sqlite3
|
||||
pool: 5
|
||||
@@ -23,3 +23,6 @@ production:
|
||||
database: db/production.sqlite3
|
||||
pool: 5
|
||||
timeout: 5000
|
||||
|
||||
cucumber:
|
||||
<<: *test
|
||||
@@ -26,6 +26,12 @@ en:
|
||||
show_all: Show all ${models.plural.list}
|
||||
show:
|
||||
title: Show %{list}
|
||||
list:
|
||||
is_helped_button: Question answered!
|
||||
close_list: Close!
|
||||
order:
|
||||
being_processed: 'In process!'
|
||||
being_served: 'Is delivered!'
|
||||
section:
|
||||
first_section_title: Room
|
||||
show:
|
||||
@@ -35,6 +41,9 @@ en:
|
||||
title: "Manage tables for ${models.section|downcase}: %{title}"
|
||||
tables_view:
|
||||
link: 'Tables view'
|
||||
table_actions:
|
||||
title: '${models.table} actions'
|
||||
got_to_table: 'Go to ${models.table|downcase}'
|
||||
add_tables:
|
||||
button_label: Add tables
|
||||
modal:
|
||||
|
||||
@@ -26,6 +26,12 @@ nl:
|
||||
show_all: Toon alle ${models.plural.list}
|
||||
show:
|
||||
title: "%{list} tonen"
|
||||
list:
|
||||
is_helped_button: Vraag beantwoord!
|
||||
close_list: Afsluiten!
|
||||
order:
|
||||
being_processed: 'Ben bezig!'
|
||||
being_served: 'Ik kom het brengen!'
|
||||
section:
|
||||
first_section_title: Ruimte
|
||||
show:
|
||||
@@ -35,6 +41,9 @@ nl:
|
||||
title: "Tafels beheren voor ${models.section|downcase}: %{title}"
|
||||
tables_view:
|
||||
link: Tafel overzicht
|
||||
table_actions:
|
||||
title: '${models.table} acties'
|
||||
got_to_table: 'Toon ${models.table|downcase}'
|
||||
add_tables:
|
||||
button_label: Voeg tafels toe
|
||||
modal:
|
||||
|
||||
@@ -78,6 +78,7 @@ Qwaiter::Application.routes.draw do
|
||||
member do
|
||||
get :manage_tables
|
||||
get :tables_view
|
||||
get :table_actions
|
||||
post :add_tables
|
||||
post :arrange_tables
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user