1
0
mirror of https://github.com/projekteuler/projekteuler.git synced 2026-01-27 02:28:50 +01:00

Fix small bugs in views

This commit is contained in:
2015-02-01 11:04:51 +01:00
parent d2ab9f3202
commit fb108420b4
4 changed files with 4 additions and 11 deletions

View File

@@ -16,8 +16,8 @@
<% if devise_mapping.rememberable? %>
<div class="checkbox">
<label>
<%= f.check_box :remember_me %>
<%= f.label :remember_me %>
<%= f.check_box :remember_me %> <%= t '.remember_me' %>
</label>
</div>
<% end %>
<%= f.submit t('.sign_in', :default => "Sign in"), class: "btn btn-primary" %>

View File

@@ -1,7 +1,3 @@
<% if notice %>
<p id="notice"><%= notice %></p>
<% end %>
<div class="page-header">
<h1><%= @problem.title %> <small><%= t '.problem_subtitle', id: @problem.id %></small></h1>
</div>

View File

@@ -1,7 +1,3 @@
<% if notice %>
<p id="notice"><%= notice %></p>
<% end %>
<div class="page-header">
<h1><%= @translation.title %> <small><%= t 'problems.show.problem_subtitle', id: @translation.problem_id %></small></h1>
</div>