From 6b3ed8a05e0166fb165b16f62e8c80132a743b3d Mon Sep 17 00:00:00 2001 From: Stella Rouzi Date: Mon, 15 Jun 2015 12:00:12 +0300 Subject: [PATCH] Fix labels for longitude latitude --- app/views/admin/venues/_form.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/admin/venues/_form.html.haml b/app/views/admin/venues/_form.html.haml index 26bd1622..f63d34cc 100644 --- a/app/views/admin/venues/_form.html.haml +++ b/app/views/admin/venues/_form.html.haml @@ -7,7 +7,7 @@ = semantic_form_for(@venue, url: admin_conference_venue_path(@conference.short_title)) do |f| = f.inputs :name, :website = f.input :description, input_html: { rows: 5, cols: 20, data: { provide: 'markdown-editable' } }, hint: markdown_hint - = f.inputs :street, :postalcode, :city, :country, :longitude, :latitude + = f.inputs :street, :postalcode, :city, :country, :latitude, :longitude - unless @venue.photo.blank? = image_tag @venue.photo(:thumb) = f.input :photo