My favorites | Sign in
Project Home Issues
New issue   Search
for
  Advanced search   Search tips   Subscriptions

Issue 932 attachment: index.html.erb (1.3 KB)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<div class="grid_12">
<div class="workArea dashboard">
<span id="employee_name" style="display: none;"><%= employee.name %></span>
<div id="day_form">
<p class="validate_tips">All fields marked with a * are required.</p>
<form>
<ul>
<li>
<label for="type">type</label>
<select id="type" name="type" onchange="toggle_worked_in_country();">
<% date_types_for_select.each do |k, v| %>
<option value="<%= v %>"><%= k %></option>
<% end %>
</select>
</li>
<li>
<input id="worked_in_country" type="checkbox" name="worked_in_country" value="true" />
<label for="worked_in_country">worked in country?</label>
</li>
<li id="alternate_location_container" style="display: none;">
<label for="alternate_location">Alternate Location</label>
<select id="alternate_location" name="alternate_location">
<% countries_for_select.each do |country| %>
<option value="<%= country %>"><%= country %></option>
<% end -%>
</select>

</li>
</ul>
</form>
</div>
<h1>Employee Calendar</h1>
<div id="calendar" style="margin-top: 50px"></div>
</div>
</div>
Powered by Google Project Hosting