]>
Commit | Line | Data |
---|---|---|
42546e6c MG |
1 | package Gruntmaster::Page::Pb::Entry; |
2 | ||
3 | use 5.014000; | |
4 | use strict; | |
5 | use warnings; | |
bb95f538 MG |
6 | use Gruntmaster::Page::Base pb_entry => '<tmpl_var name>'; |
7 | our @ISA = qw/Gruntmaster::Page::Base/; | |
42546e6c MG |
8 | our $VERSION = '0.001'; |
9 | ||
bb95f538 | 10 | use constant TEMPLATES => { |
cd9af27e | 11 | en => <<'HTML', |
7b5883d1 | 12 | <tmpl_var ESCAPE=0 statement> |
42546e6c | 13 | |
fe78f0c1 | 14 | <tmpl_if cansubmit> |
42546e6c MG |
15 | <h1>Submit solution</h1> |
16 | <form action="https://gm.ieval.ro/action/submit" method="POST" enctype="multipart/form-data"> | |
17 | <input type="hidden" name="problem" value="<tmpl_var id>"> | |
fe78f0c1 | 18 | <tmpl_if_defined contest><input type="hidden" name="contest" value="<tmpl_var contest>"></tmpl_if_defined> |
42546e6c MG |
19 | <label>File: <input name="prog" required type="file"></label> |
20 | ||
21 | <label>File format: <select name="prog_format" required> | |
22 | <tmpl_loop formats><option value="<tmpl_var _>"><tmpl_var _></option> | |
23 | </tmpl_loop></select></label> | |
24 | ||
25 | <input type="submit" value="Submit job"> | |
6d28cb38 | 26 | </form> |
fe78f0c1 | 27 | </tmpl_if> |
42546e6c | 28 | HTML |
bb95f538 | 29 | }; |
42546e6c | 30 | |
bb95f538 MG |
31 | sub _generate{ |
32 | my ($self, $htc, $path, $lang) = @_; | |
42546e6c | 33 | |
bb95f538 | 34 | $path =~ m,(?:ct/([^/])+/)?pb/(\w+)\.html$,; |
42546e6c | 35 | |
cd9af27e | 36 | my ($contest, $id) = ($1, $2); |
cd9af27e MG |
37 | |
38 | $htc->param(cansubmit => 1); | |
39 | if (defined $contest) { | |
40 | $htc->param(cansubmit => time >= contest_start $contest && time <= contest_end $contest); | |
41 | $htc->param(contest => $contest); | |
42 | } | |
c2a23f84 | 43 | $htc->param(formats => Gruntmaster::Page::Submit::FORMATS); |
cd9af27e | 44 | $htc->param(id => $id); |
3da9c3c2 | 45 | local $Gruntmaster::Data::contest = $contest if $contest; |
cd9af27e | 46 | $htc->param(name => problem_name $id); |
2ee6edcf MG |
47 | $htc->param(author => problem_author $id); |
48 | $htc->param(owner => problem_owner $id); | |
3da9c3c2 | 49 | $htc->param(statement => problem_statement $id); |
42546e6c MG |
50 | } |
51 | ||
52 | 1 |