-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
display all fields from db and navigate through records (probably not…
… the efficient way of doing it but ok for now)
- Loading branch information
Showing
7 changed files
with
148 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,4 @@ class ApplicationController < ActionController::Base | |
|
||
def index | ||
end | ||
|
||
def survey_file | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Contact Us |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Help |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,148 @@ | ||
<p id="notice"><%= notice %></p> | ||
|
||
<p> | ||
<b>Surv file:</b> | ||
<b>ID:</b> | ||
<%= @survey_file.id %> | ||
</p> | ||
|
||
<p> | ||
<b>Survey File:</b> | ||
<%= @survey_file.Surv_File %> | ||
</p> | ||
|
||
<p> | ||
<b>Proj num:</b> | ||
<b>Official Name:</b> | ||
|
||
</p> | ||
|
||
<p> | ||
<b>Feature Type:</b> | ||
|
||
</p> | ||
|
||
<p> | ||
<b>Province:</b> | ||
|
||
</p> | ||
|
||
<p> | ||
<b>Secondary Name:</b> | ||
<%= @survey_file.Location_second %> | ||
</p> | ||
|
||
<p> | ||
<b>Mapsheet:</b> | ||
|
||
</p> | ||
|
||
<p> | ||
<b>Street Location:</b> | ||
<%= @survey_file.Strt_loc %> | ||
</p> | ||
|
||
<p> | ||
<b>Latitude:</b> | ||
|
||
</p> | ||
|
||
<p> | ||
<b>Longitude:</b> | ||
|
||
</p> | ||
|
||
<p> | ||
<b>Named:</b> | ||
<%= @survey_file.Object_Nm %> | ||
</p> | ||
|
||
<p> | ||
<b>Department Contact:</b> | ||
<%= @survey_file.Dept_Contact %> | ||
</p> | ||
|
||
<p> | ||
<b>Department Telephone:</b> | ||
<%= @survey_file.Dept_tel %> | ||
</p> | ||
|
||
<p> | ||
<b>Department Abbreviation:</b> | ||
<%= @survey_file.Dept_Abbr %> | ||
</p> | ||
|
||
<p> | ||
<b>Department Secondary:</b> | ||
<%= @survey_file.Dept_Sec %> | ||
</p> | ||
|
||
<p> | ||
<b>Project Man:</b> | ||
<%= @survey_file.Proj_Man %> | ||
</p> | ||
|
||
<p> | ||
<b>Sigma:</b> | ||
<%= @survey_file.Sigma %> | ||
</p> | ||
|
||
<p> | ||
<b>EDRM Number:</b> | ||
<%= @survey_file.EDRM_No %> | ||
</p> | ||
|
||
<p> | ||
<b>CR File:</b> | ||
<%= @survey_file.CR_File %> | ||
</p> | ||
|
||
<p> | ||
<b>Project Number:</b> | ||
<%= @survey_file.Proj_Num %> | ||
</p> | ||
|
||
<p> | ||
<b>Strt date:</b> | ||
<b>SSA Number:</b> | ||
<%= @survey_file.SSA_Num %> | ||
</p> | ||
|
||
<p> | ||
<b>SSA Amount:</b> | ||
<%= @survey_file.SSA_Amount %> | ||
</p> | ||
|
||
<p> | ||
<b>Financial Code:</b> | ||
<%= @survey_file.Fin_Code %> | ||
</p> | ||
|
||
<p> | ||
<b>Bulk Number:</b> | ||
<%= @survey_file.Bulk_Num %> | ||
</p> | ||
|
||
<p> | ||
<b>Description:</b> | ||
<%= @survey_file.Descript %> | ||
</p> | ||
|
||
<p> | ||
<b>Remark:</b> | ||
<%= @survey_file.Remark %> | ||
</p> | ||
|
||
<p> | ||
<b>Start Date:</b> | ||
<%= @survey_file.Strt_Date %> | ||
</p> | ||
|
||
<p> | ||
<b>Cmpl date:</b> | ||
<b>Completed Date:</b> | ||
<%= @survey_file.Cmpl_Date %> | ||
</p> | ||
|
||
|
||
<% if @survey_file.id > 1 %> | ||
<%= link_to '<< Previous', :id => (@survey_file.id-1) %> | | ||
<% end %> | ||
<%= link_to 'Edit', edit_survey_file_path(@survey_file) %> | | ||
<%= link_to 'Back', survey_files_path %> | ||
<%= link_to 'Back', survey_files_path %> | | ||
<%= link_to 'Next >>', :id => (@survey_file.id+1) %> |