diff --git a/app/views/problems/index.html.haml b/app/views/problems/index.html.haml
--- a/app/views/problems/index.html.haml
+++ b/app/views/problems/index.html.haml
@@ -21,6 +21,9 @@
%th Name
%th Full name
%th.text-right Full score
+ %th
+ Submit
+ %sup{class: 'text-primary',data: {toggle: 'tooltip'}, title: 'Admin can always submit to any problem' } [?]
%th Date added
%th.text-center
Avail?
@@ -37,8 +40,11 @@
%tr{:class => "#{(problem.available) ? "success" : "danger"}", :id => "prob-#{problem.id}", :name => "prob-#{problem.id}"}
- @problem=problem
%td= problem.name #in_place_editor_field :problem, :name, {}, :rows=>1
- %td= problem.full_name #in_place_editor_field :problem, :full_name, {}, :rows=>1
+ %td
+ = problem.full_name #in_place_editor_field :problem, :full_name, {}, :rows=>1
+ = link_to_description_if_any "[#{t 'main.problem_desc'}] ".html_safe, problem
%td.text-right= problem.full_score #in_place_editor_field :problem, :full_score, {}, :rows=>1
+ %td= link_to "Submit", direct_edit_problem_submissions_path(problem), class: 'btn btn-xs btn-primary'
%td= problem.date_added
%td= toggle_button(@problem.available?, toggle_problem_path(@problem), "problem-avail-#{@problem.id}")
%td= toggle_button(@problem.view_testcase?, toggle_view_testcase_problem_path(@problem), "problem-view-testcase-#{@problem.id}")