Skip to content

Instantly share code, notes, and snippets.

@foxweb
Created November 24, 2010 11:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save foxweb/713493 to your computer and use it in GitHub Desktop.
Save foxweb/713493 to your computer and use it in GitHub Desktop.
show.html.erb
<p id="notice"><%= notice %></p>
<p>
<b>Lastname:</b>
<%= @request.lastname %>
</p>
<p>
<b>Lastname prev:</b>
<%= @request.lastname_prev %>
</p>
<p>
<b>Firstname:</b>
<%= @request.firstname %>
</p>
<p>
<b>Birth date:</b>
<%= I18n::l @request.birth_date %>
</p>
<p>
<b>Birth place:</b>
<%= @request.birth_place %>
</p>
<p>
<b>Birth country:</b>
<%= @request.birth_country %>
</p>
<p>
<b>National:</b>
<%= @request.national %>
</p>
<p>
<b>Birth national:</b>
<%= @request.birth_national %>
</p>
<p>
<b>Sex:</b>
<%= @request.sex %>
</p>
<p>
<b>Marital status:</b>
<%= @request.marital_status %>
</p>
<p>
<b>Num:</b>
<%= @request.num_id %>
</p>
<p>
<b>Doc type:</b>
<%= @request.doc_type %>
</p>
<p>
<b>Doc:</b>
<%= @request.doc_id %>
</p>
<p>
<b>Doc date:</b>
<%= I18n::l @request.doc_date %>
</p>
<p>
<b>Doc before:</b>
<%= I18n::l @request.doc_before %>
</p>
<p>
<b>Doc from:</b>
<%= @request.doc_from %>
</p>
<p>
<b>Post address:</b>
<%= @request.post_address %>
</p>
<p>
<b>Email:</b>
<%= @request.email %>
</p>
<p>
<b>Phone:</b>
<%= @request.phone %>
</p>
<p>
<b>Resident:</b>
<%= @request.resident %>
</p>
<p>
<b>Resident doc:</b>
<%= @request.resident_doc_id %>
</p>
<p>
<b>Resident before:</b>
<%= @request.resident_before %>
</p>
<p>
<b>Professional:</b>
<%= @request.professional %>
</p>
<p>
<b>Employer:</b>
<%= @request.employer %>
</p>
<p>
<b>Trip purpose:</b>
<%= @request.trip_purpose %>
</p>
<p>
<b>Trip purpose comment:</b>
<%= @request.trip_purpose_comment %>
</p>
<p>
<b>Country dest:</b>
<%= @request.country_dest %>
</p>
<p>
<b>Country start:</b>
<%= @request.country_start %>
</p>
<p>
<b>Visa entries:</b>
<%= @request.visa_entries %>
</p>
<p>
<b>Num days:</b>
<%= @request.num_days %>
</p>
<p>
<b>Visas others:</b>
<%= @request.visas_others %>
</p>
<p>
<b>Visas comment:</b>
<%= @request.visas_comment %>
</p>
<p>
<b>Fingerprints:</b>
<%= @request.fingerprints %>
</p>
<p>
<b>Fingerprints date:</b>
<%= @request.fingerprints_date %>
</p>
<p>
<b>Permission dest entry from:</b>
<%= @request.permission_dest_entry_from %>
</p>
<p>
<b>Permission dest entry begin:</b>
<%= @request.permission_dest_entry_begin %>
</p>
<p>
<b>Permission dest entry end:</b>
<%= @request.permission_dest_entry_end %>
</p>
<p>
<b>Shengen entry date:</b>
<%= @request.shengen_entry_date %>
</p>
<p>
<b>Shengen leave date:</b>
<%= @request.shengen_leave_date %>
</p>
<p>
<b>Dest names:</b>
<%= @request.dest_names %>
</p>
<p>
<b>Dest address:</b>
<%= @request.dest_address %>
</p>
<p>
<b>Dest email:</b>
<%= @request.dest_email %>
</p>
<p>
<b>Dest phone:</b>
<%= @request.dest_phone %>
</p>
<p>
<b>Invite org name:</b>
<%= @request.invite_org_name %>
</p>
<p>
<b>Invite org address:</b>
<%= @request.invite_org_address %>
</p>
<p>
<b>Invite org phone:</b>
<%= @request.invite_org_phone %>
</p>
<p>
<b>Invite org person:</b>
<%= @request.invite_org_person %>
</p>
<p>
<b>Who pays:</b>
<%= @request.who_pays %>
</p>
<p>
<b>Pays 1:</b>
<%= @request.pays_1 %>
</p>
<p>
<b>Pays 2:</b>
<%= @request.pays_2 %>
</p>
<p>
<b>Notes:</b>
<%= @request.notes %>
</p>
<%= link_to 'Edit', edit_request_path(@request) %> |
<%= link_to 'Back', requests_path %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment