Commit 6a89cce0
Changed files (2)
app
assets
stylesheets
views
creations
app/assets/stylesheets/scaffolds.css.scss
@@ -16,7 +16,7 @@ pre {
font-size: 11px; }
a {
- color: #000;
+ color: #0069D6;
&:visited {
color: #666; }
&:hover {
app/views/creations/edit.html.erb
@@ -16,11 +16,12 @@
</div>
<% if @creation.photos.length < 3 %>
+ <h3>Add more photos</h3>
<% unless @creation.new_record? %>
<%= form_tag(creation_photos_path(@creation), :method => "post", :multipart => true) do |f| %>
<%= fields_for Photo.new do |f| %>
<%= f.file_field :image, :rel => creation_photos_path(@creation) %>
- <input type="submit" class="btn primary" value="add another photo" />
+ <input type="submit" class="btn primary" value="Add photo" />
<% end %>
<% end %>
<% end %>