Show More
Commit Description:
add golden submit button...
Commit Description:
add golden submit button
- When the user submit more than or equal to 100 times the submit button will turn gold
- Add golden-btn tag in applications.css.scss
References:
File last commit:
Show/Diff file:
Action:
app/views/report/stuck.html.haml
| 17 lines
| 451 B
| text/x-haml
| HamlLexer
|
r463 | %table.info | |||
%thead | ||||
%tr.info-head | ||||
%th Problem | ||||
%th User | ||||
%th tries | ||||
%tbody | ||||
- @struggle.each do |s| | ||||
%tr | ||||
%td | ||||
= link_to "(#{s[:problem].name})", controller: :problems, action: :stat, id: s[:problem] | ||||
= s[:problem].full_name | ||||
%td | ||||
= link_to "(#{s[:user].login})", controller: :users, action: :profile, id: s[:user] | ||||
= s[:user].full_name | ||||
%td | ||||
= s[:tries] | ||||