ballalama3_app/app/views/admin/reservations/_index_block.html.haml
Nicolas Bally bc774b8159 initial
2016-12-01 10:54:16 +01:00

73 lines
1.6 KiB
Plaintext

#reservations_index_block
-date_actu = @start_week_date
-@compteur = 0
%table.top
%tr
%td.prev
=link_to raw("<&nbsp;"+l(@prev_month, :format => :month)), admin_reservations_path(:month => @prev_month.month.to_i, :year => @prev_month.year.to_i), :remote => true
%td
%h1=l @start_month_date, :format => :month
%td.next
=link_to raw(l(@next_month, :format => :month)+"&nbsp;>"), admin_reservations_path(:month => @next_month.month.to_i, :year => @next_month.year.to_i), :remote => true
#calendar
%table
%tr
%th{:style => "width:14%;"} Lundi
%th{:style => "width:14%;"} Mardi
%th{:style => "width:14%;"} Mercredi
%th{:style => "width:14%;"} Jeudi
%th{:style => "width:14%;"} Vendredi
%th{:style => "width:14%;"} Samedi
%th{:style => "width:14%;"} Dimanche
%tr
-while date_actu < @start_month_date
%td.day_td=render :partial => "day", :locals => {:day => date_actu}
-date_actu = date_actu + 1.day
-@compteur += 1
-if @compteur == 7
=raw "</tr><tr>"
-@compteur = 0
-while date_actu <= @end_month_date
%td.day_td=render :partial => "day", :locals => {:day => date_actu}
-date_actu = date_actu + 1.day
-@compteur += 1
-if @compteur == 7
=raw "</tr><tr>"
-@compteur = 0
-while date_actu <= @end_month_date.end_of_week
%td.day_td=render :partial => "day", :locals => {:day => date_actu}
-date_actu = date_actu + 1.day
-@compteur += 1
-if @compteur == 7
=raw "</tr><tr>"
-@compteur = 0