mirror of
https://github.com/projekteuler/projekteuler.git
synced 2025-12-10 16:46:42 +01:00
9 lines
491 B
Plaintext
9 lines
491 B
Plaintext
<% provide(:title, t('.administration')) %>
|
|
<h1><%= t('.administration') %></h1>
|
|
<%= link_to t('.view_translations'), admin_translations_path, class: 'btn btn-default' %>
|
|
|
|
<h1><%= t('.update_problem_count') %></h1>
|
|
<%= form_tag '/admin/update_problem_count', method: :post, class: 'form-inline' do %>
|
|
<%= number_field_tag 'problem_count', @current_problem_count, min: @current_problem_count, class: 'form-control' %>
|
|
<%= submit_tag t('.update'), class: 'btn btn-warning' %>
|
|
<% end %> |