This file contains hidden or 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
<div class="container"> | |
<div class=" well col-sm-6"> | |
<%= render 'shared/error_messages' %> | |
<h3>Food Travel Story</h3> | |
<p>Title: <%[email protected]%></p> | |
<p>Written by: <%= @destination.user.name %></p> | |
<p>Location: <%[email protected]%></p> | |
<p>Name: <%[email protected]%></p> | |
<p>Type of Food: <%[email protected]%></p> |
This file contains hidden or 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
%= form_for(@destination) do |destination_builder| %> | |
<%= render 'shared/error_messages' %> | |
<p> | |
<%= destination_builder.label :title %> | |
<%= destination_builder.text_field :title, class: 'form-control' %><br> | |
</p> | |
<p> | |
<%= destination_builder.label :location %> | |
<%= destination_builder.text_field :location, class: 'form-control' %><br> |
NewerOlder