diff --git a/app/views/main/_problem.html.erb b/app/views/main/_problem.html.erb
--- a/app/views/main/_problem.html.erb
+++ b/app/views/main/_problem.html.erb
@@ -3,7 +3,10 @@
<%= "#{problem_counter+1}" %>
- <%= "(#{problem.name}) #{problem.full_name}" %>
+ <%= "#{problem.name}"%>
+ |
+
+ <%= "#{problem.full_name}" %>
<%= link_to_description_if_any "[#{t 'main.problem_desc'}]", problem %>
|
diff --git a/app/views/main/list.html.haml b/app/views/main/list.html.haml
--- a/app/views/main/list.html.haml
+++ b/app/views/main/list.html.haml
@@ -25,7 +25,8 @@
%table.info
%tr.info-head
%th
- %th Tasks
+ %th Tasks name
+ %th Full name
%th # of sub(s)
%th Results
= render :partial => 'problem', :collection => @problems
@@ -37,7 +38,8 @@
%table.info
%tr.info-head
%th
- %th Tasks
+ %th Tasks name
+ %th Full name
%th # of sub(s)
%th Results
= render :partial => 'problem', :collection => cp[:problems]
|