2021-07-21 07:37:06 +00:00
|
|
|
<h3>
|
|
|
|
<% if @user_name %>
|
|
|
|
<%=t("ruling_timer.user_work_history",{:user=>@user_name})%>
|
|
|
|
<% else %>
|
|
|
|
<%=t("ruling_timer.my_work_history")%>
|
|
|
|
<% end %>
|
|
|
|
</h3>
|
2022-04-18 01:01:57 +00:00
|
|
|
<div class="pull-right">
|
|
|
|
<a href="?type=" class="btn <%= 'active' if params[:type] != 'statistic' %>"><%=t("ruling_timer.list")%></a>
|
|
|
|
<a href="?type=statistic" class="btn <%= 'active' if params[:type] == 'statistic' %>"><%=t("ruling_timer.statistic")%></a>
|
|
|
|
</div>
|
|
|
|
<% if params[:type] != "statistic" %>
|
|
|
|
<%= render :partial => "index_table" %>
|
|
|
|
<% else %>
|
|
|
|
<%= render :partial => "index_statistic" %>
|
|
|
|
<% end %>
|