-
Notifications
You must be signed in to change notification settings - Fork 0
/
TODO.txt
44 lines (32 loc) · 1.5 KB
/
TODO.txt
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
36
37
38
39
40
41
42
43
44
01- Change config.action_mailer.default_url_options = { :host => 'localhost:3000' }
to the actual host(domain name root) at development.rb file.
02- Now we need to validate the dates in case user types random numeric chars: use regex or other form
03- CLarifying hour block when individuals leave.
05- mention the javascript hack in my code
javascript:document.getElementById('airline_passengersToBoard').options[10]=new Option('1.9');document.getElementById('airline_passengersToBoard').value='1.9';document.forms[0].submit()
javascript:document.getElementById('airline_passengersToBoard').options[10]=new Option('12');document.getElementById('airline_passengersToBoard').value='12';document.forms[0].submit()
<li><%= link_to 'CMUDiagnostic', outside_viewerLinkeage_path( 'CMUDiagnostic' ) %></li>
class="<%= cycle("even", "odd") %>"
Old _form Creation html code
<div class="field">
<%= f.label :fly_From %>
<%= f.text_field :flyFrom %>
</div>
<div class="field">
<%= f.label :fly_To %>
<%= f.text_field :flyTo %>
</div>
<div class="field">
<%= f.label :departure %>
<%= f.text_field :departureOnThe %>
<%= f.select :departureDaySection, options_for_select(Airline::DAYPERIOD) %>
</div>
<div class="field">
<%= f.label :return %>
<%= f.text_field :returnOnThe %>
<%= f.select :returnDaySection, options_for_select(Airline::DAYPERIOD) %>
</div>
<div class="field">
<%= f.label :passengers %>
<%= f.select :passengersToBoard, (1..10) %>
</div>