Description:
add remark and enable for user
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r476:4ff0dd0be8a1 - - 3 files changed: 11 inserted, 1 deleted
@@ -0,0 +1,6 | |||
|
1 | + class AddMoreToUsers < ActiveRecord::Migration | |
|
2 | + def change | |
|
3 | + add_column :users, :enabled, :boolean, default: 1 | |
|
4 | + add_column :users, :remark, :string | |
|
5 | + end | |
|
6 | + end |
@@ -1,57 +1,59 | |||
|
1 | 1 | - content_for :header do |
|
2 | 2 | = javascript_include_tag 'local_jquery' |
|
3 | 3 | = stylesheet_link_tag 'tablesorter-theme.cafe' |
|
4 | 4 | |
|
5 | 5 | %script{:type=>"text/javascript"} |
|
6 | 6 | $(function () { |
|
7 | 7 | $('#since_datetime').datetimepicker({ showButtonPanel: true, dateFormat: "yy-mm-dd", controlType: "slider"} ); |
|
8 | 8 | $('#until_datetime').datetimepicker({ showButtonPanel: true, dateFormat: "yy-mm-dd", controlType: "slider"} ); |
|
9 | 9 | $('#my_table').tablesorter({widgets: ['zebra']}); |
|
10 | 10 | }); |
|
11 | 11 | |
|
12 | 12 | %h1 User grading results |
|
13 | 13 | %h2= params[:action] == 'user_stat' ? "Show scores from latest submission" : "Show max scores in submission range" |
|
14 | 14 | |
|
15 | 15 | |
|
16 | 16 | - if @problem and @problem.errors |
|
17 | 17 | =error_messages_for 'problem' |
|
18 | 18 | |
|
19 | 19 | = render partial: 'submission_range' |
|
20 | 20 | |
|
21 | 21 | - if params[:action] == 'user_stat' |
|
22 | 22 | %h3 Latest score |
|
23 | 23 | = link_to '[download csv with all problems]', controller: :user_admin, action: :user_stat, commit: 'download csv' |
|
24 | 24 | - else |
|
25 | 25 | %h3 Max score |
|
26 | 26 | = link_to '[Show only latest submissions]', controller: :user_admin, action: :user_stat |
|
27 | 27 | = link_to '[download csv with all problems]', controller: :user_admin, action: :user_stat_max, commit: 'download csv' |
|
28 | 28 | |
|
29 | 29 | %table.tablesorter-cafe#my_table |
|
30 | 30 | %thead |
|
31 | 31 | %tr |
|
32 | 32 | %th User |
|
33 | 33 | %th Name |
|
34 | 34 | %th Activated? |
|
35 | 35 | %th Logged in |
|
36 | 36 | %th Contest(s) |
|
37 | + %th Remark | |
|
37 | 38 | - @problems.each do |p| |
|
38 | 39 | %th= p.name |
|
39 | 40 | %th Total |
|
40 | 41 | %th Passed |
|
41 | 42 | %tbody |
|
42 | 43 | - @scorearray.each do |sc| |
|
43 | 44 | %tr{class: cycle('info-even','info-odd')} |
|
44 | 45 | - total,num_passed = 0,0 |
|
45 | 46 | - sc.each_index do |i| |
|
46 | 47 | - if i == 0 |
|
47 | 48 | %td= link_to sc[i].login, controller: 'users', action: 'profile', id: sc[i] |
|
48 | 49 | %td= sc[i].full_name |
|
49 | 50 | %td= sc[i].activated |
|
50 | 51 | %td= sc[i].try(:contest_stat).try(:started_at)!=nil ? 'yes' : 'no' |
|
51 | 52 | %td= sc[i].contests.collect {|c| c.name}.join(', ') |
|
53 | + %td= sc[i].remark | |
|
52 | 54 | - else |
|
53 | 55 | %td= sc[i][0] |
|
54 | 56 | - total += sc[i][0] |
|
55 | 57 | - num_passed += 1 if sc[i][1] |
|
56 | 58 | %td= total |
|
57 | 59 | %td= num_passed |
@@ -1,110 +1,110 | |||
|
1 | 1 | # encoding: UTF-8 |
|
2 | 2 | # This file is auto-generated from the current state of the database. Instead |
|
3 | 3 | # of editing this file, please use the migrations feature of Active Record to |
|
4 | 4 | # incrementally modify your database, and then regenerate this schema definition. |
|
5 | 5 | # |
|
6 | 6 | # Note that this schema.rb definition is the authoritative source for your |
|
7 | 7 | # database schema. If you need to create the application database on another |
|
8 | 8 | # system, you should be using db:schema:load, not running all the migrations |
|
9 | 9 | # from scratch. The latter is a flawed and unsustainable approach (the more migrations |
|
10 | 10 | # you'll amass, the slower it'll run and the greater likelihood for issues). |
|
11 | 11 | # |
|
12 | 12 | # It's strongly recommended to check this file into your version control system. |
|
13 | 13 | |
|
14 |
- ActiveRecord::Schema.define(:version => 201 |
|
|
14 | + ActiveRecord::Schema.define(:version => 20150203153534) do | |
|
15 | 15 | |
|
16 | 16 | create_table "announcements", :force => true do |t| |
|
17 | 17 | t.string "author" |
|
18 | 18 | t.text "body" |
|
19 | 19 | t.boolean "published" |
|
20 | 20 | t.datetime "created_at", :null => false |
|
21 | 21 | t.datetime "updated_at", :null => false |
|
22 | 22 | t.boolean "frontpage", :default => false |
|
23 | 23 | t.boolean "contest_only", :default => false |
|
24 | 24 | t.string "title" |
|
25 | 25 | t.string "notes" |
|
26 | 26 | end |
|
27 | 27 | |
|
28 | 28 | create_table "contests", :force => true do |t| |
|
29 | 29 | t.string "title" |
|
30 | 30 | t.boolean "enabled" |
|
31 | 31 | t.datetime "created_at", :null => false |
|
32 | 32 | t.datetime "updated_at", :null => false |
|
33 | 33 | t.string "name" |
|
34 | 34 | end |
|
35 | 35 | |
|
36 | 36 | create_table "contests_problems", :id => false, :force => true do |t| |
|
37 | 37 | t.integer "contest_id" |
|
38 | 38 | t.integer "problem_id" |
|
39 | 39 | end |
|
40 | 40 | |
|
41 | 41 | create_table "contests_users", :id => false, :force => true do |t| |
|
42 | 42 | t.integer "contest_id" |
|
43 | 43 | t.integer "user_id" |
|
44 | 44 | end |
|
45 | 45 | |
|
46 | 46 | create_table "countries", :force => true do |t| |
|
47 | 47 | t.string "name" |
|
48 | 48 | t.datetime "created_at", :null => false |
|
49 | 49 | t.datetime "updated_at", :null => false |
|
50 | 50 | end |
|
51 | 51 | |
|
52 | 52 | create_table "descriptions", :force => true do |t| |
|
53 | 53 | t.text "body" |
|
54 | 54 | t.boolean "markdowned" |
|
55 | 55 | t.datetime "created_at", :null => false |
|
56 | 56 | t.datetime "updated_at", :null => false |
|
57 | 57 | end |
|
58 | 58 | |
|
59 | 59 | create_table "grader_configurations", :force => true do |t| |
|
60 | 60 | t.string "key" |
|
61 | 61 | t.string "value_type" |
|
62 | 62 | t.string "value" |
|
63 | 63 | t.datetime "created_at", :null => false |
|
64 | 64 | t.datetime "updated_at", :null => false |
|
65 | 65 | t.text "description" |
|
66 | 66 | end |
|
67 | 67 | |
|
68 | 68 | create_table "grader_processes", :force => true do |t| |
|
69 | 69 | t.string "host", :limit => 20 |
|
70 | 70 | t.integer "pid" |
|
71 | 71 | t.string "mode" |
|
72 | 72 | t.boolean "active" |
|
73 | 73 | t.datetime "created_at", :null => false |
|
74 | 74 | t.datetime "updated_at", :null => false |
|
75 | 75 | t.integer "task_id" |
|
76 | 76 | t.string "task_type" |
|
77 | 77 | t.boolean "terminated" |
|
78 | 78 | end |
|
79 | 79 | |
|
80 | 80 | add_index "grader_processes", ["host", "pid"], :name => "index_grader_processes_on_ip_and_pid" |
|
81 | 81 | |
|
82 | 82 | create_table "languages", :force => true do |t| |
|
83 | 83 | t.string "name", :limit => 10 |
|
84 | 84 | t.string "pretty_name" |
|
85 | 85 | t.string "ext", :limit => 10 |
|
86 | 86 | t.string "common_ext" |
|
87 | 87 | end |
|
88 | 88 | |
|
89 | 89 | create_table "logins", :force => true do |t| |
|
90 | 90 | t.string "user_id" |
|
91 | 91 | t.string "ip_address" |
|
92 | 92 | t.datetime "created_at", :null => false |
|
93 | 93 | t.datetime "updated_at", :null => false |
|
94 | 94 | end |
|
95 | 95 | |
|
96 | 96 | create_table "messages", :force => true do |t| |
|
97 | 97 | t.integer "sender_id" |
|
98 | 98 | t.integer "receiver_id" |
|
99 | 99 | t.integer "replying_message_id" |
|
100 | 100 | t.text "body" |
|
101 | 101 | t.boolean "replied" |
|
102 | 102 | t.datetime "created_at", :null => false |
|
103 | 103 | t.datetime "updated_at", :null => false |
|
104 | 104 | end |
|
105 | 105 | |
|
106 | 106 | create_table "problems", :force => true do |t| |
|
107 | 107 | t.string "name", :limit => 30 |
|
108 | 108 | t.string "full_name" |
|
109 | 109 | t.integer "full_score" |
|
110 | 110 | t.date "date_added" |
@@ -146,101 +146,103 | |||
|
146 | 146 | t.datetime "updated_at" |
|
147 | 147 | end |
|
148 | 148 | |
|
149 | 149 | add_index "sessions", ["session_id"], :name => "index_sessions_on_session_id" |
|
150 | 150 | add_index "sessions", ["updated_at"], :name => "index_sessions_on_updated_at" |
|
151 | 151 | |
|
152 | 152 | create_table "sites", :force => true do |t| |
|
153 | 153 | t.string "name" |
|
154 | 154 | t.boolean "started" |
|
155 | 155 | t.datetime "start_time" |
|
156 | 156 | t.datetime "created_at", :null => false |
|
157 | 157 | t.datetime "updated_at", :null => false |
|
158 | 158 | t.integer "country_id" |
|
159 | 159 | t.string "password" |
|
160 | 160 | end |
|
161 | 161 | |
|
162 | 162 | create_table "submissions", :force => true do |t| |
|
163 | 163 | t.integer "user_id" |
|
164 | 164 | t.integer "problem_id" |
|
165 | 165 | t.integer "language_id" |
|
166 | 166 | t.text "source" |
|
167 | 167 | t.binary "binary" |
|
168 | 168 | t.datetime "submitted_at" |
|
169 | 169 | t.datetime "compiled_at" |
|
170 | 170 | t.text "compiler_message" |
|
171 | 171 | t.datetime "graded_at" |
|
172 | 172 | t.integer "points" |
|
173 | 173 | t.text "grader_comment" |
|
174 | 174 | t.integer "number" |
|
175 | 175 | t.string "source_filename" |
|
176 | 176 | t.float "max_runtime" |
|
177 | 177 | t.integer "peak_memory" |
|
178 | 178 | t.integer "effective_code_length" |
|
179 | 179 | t.string "ip_address" |
|
180 | 180 | end |
|
181 | 181 | |
|
182 | 182 | add_index "submissions", ["user_id", "problem_id", "number"], :name => "index_submissions_on_user_id_and_problem_id_and_number", :unique => true |
|
183 | 183 | add_index "submissions", ["user_id", "problem_id"], :name => "index_submissions_on_user_id_and_problem_id" |
|
184 | 184 | |
|
185 | 185 | create_table "tasks", :force => true do |t| |
|
186 | 186 | t.integer "submission_id" |
|
187 | 187 | t.datetime "created_at" |
|
188 | 188 | t.integer "status" |
|
189 | 189 | t.datetime "updated_at" |
|
190 | 190 | end |
|
191 | 191 | |
|
192 | 192 | create_table "test_pairs", :force => true do |t| |
|
193 | 193 | t.integer "problem_id" |
|
194 | 194 | t.text "input", :limit => 16777215 |
|
195 | 195 | t.text "solution", :limit => 16777215 |
|
196 | 196 | t.datetime "created_at", :null => false |
|
197 | 197 | t.datetime "updated_at", :null => false |
|
198 | 198 | end |
|
199 | 199 | |
|
200 | 200 | create_table "test_requests", :force => true do |t| |
|
201 | 201 | t.integer "user_id" |
|
202 | 202 | t.integer "problem_id" |
|
203 | 203 | t.integer "submission_id" |
|
204 | 204 | t.string "input_file_name" |
|
205 | 205 | t.string "output_file_name" |
|
206 | 206 | t.string "running_stat" |
|
207 | 207 | t.integer "status" |
|
208 | 208 | t.datetime "updated_at", :null => false |
|
209 | 209 | t.datetime "submitted_at" |
|
210 | 210 | t.datetime "compiled_at" |
|
211 | 211 | t.text "compiler_message" |
|
212 | 212 | t.datetime "graded_at" |
|
213 | 213 | t.string "grader_comment" |
|
214 | 214 | t.datetime "created_at", :null => false |
|
215 | 215 | t.float "running_time" |
|
216 | 216 | t.string "exit_status" |
|
217 | 217 | t.integer "memory_usage" |
|
218 | 218 | end |
|
219 | 219 | |
|
220 | 220 | add_index "test_requests", ["user_id", "problem_id"], :name => "index_test_requests_on_user_id_and_problem_id" |
|
221 | 221 | |
|
222 | 222 | create_table "user_contest_stats", :force => true do |t| |
|
223 | 223 | t.integer "user_id" |
|
224 | 224 | t.datetime "started_at" |
|
225 | 225 | t.datetime "created_at", :null => false |
|
226 | 226 | t.datetime "updated_at", :null => false |
|
227 | 227 | t.boolean "forced_logout" |
|
228 | 228 | end |
|
229 | 229 | |
|
230 | 230 | create_table "users", :force => true do |t| |
|
231 | 231 | t.string "login", :limit => 50 |
|
232 | 232 | t.string "full_name" |
|
233 | 233 | t.string "hashed_password" |
|
234 | 234 | t.string "salt", :limit => 5 |
|
235 | 235 | t.string "alias" |
|
236 | 236 | t.string "email" |
|
237 | 237 | t.integer "site_id" |
|
238 | 238 | t.integer "country_id" |
|
239 | 239 | t.boolean "activated", :default => false |
|
240 | 240 | t.datetime "created_at" |
|
241 | 241 | t.datetime "updated_at" |
|
242 | + t.boolean "enabled", :default => true | |
|
243 | + t.string "remark" | |
|
242 | 244 | end |
|
243 | 245 | |
|
244 | 246 | add_index "users", ["login"], :name => "index_users_on_login", :unique => true |
|
245 | 247 | |
|
246 | 248 | end |
You need to be logged in to leave comments.
Login now