]>
iEval git - gruntmaster-page.git/blob - lib/Gruntmaster/Page/Submit.pm
1 package Gruntmaster
::Page
::Submit
;
6 use parent qw
/Exporter/;
7 our @EXPORT_OK = qw
/generate/;
8 our $VERSION = '0.001';
10 use constant FORMATS
=> [qw
/CPP/];
11 use constant TITLE
=> 'Submit job';
14 use HTML
::Template
::Compiled
;
15 use YAML
::Any qw
/LoadFile/;
16 use Gruntmaster
::Page
::Common qw
/header footer/;
17 use Gruntmaster
::Data qw
//;
21 <form action="https://gm.ieval.ro/action/submit" method="POST" enctype="multipart/form-data">
23 <select name="problem" required>
24 <tmpl_loop problems><option value="<tmpl_var id>"><tmpl_var name></option>
25 </tmpl_loop></select></label><p>
28 <input name="prog" required type="file"></label><p>
30 <label>File format:<br>
31 <select name="prog_format" required>
32 <tmpl_loop formats><option value="<tmpl_var _>"><tmpl_var _></option>
33 </tmpl_loop></select></label><p>
35 <input type="submit" value="Submit job">
39 $templates{$_} = header
($_, TITLE
) . $templates{$_} for keys %templates;
40 $templates{$_} .= footer
$_ for keys %templates;
43 my $htc = HTML
::Template
::Compiled
->new(scalarref
=> \
$templates{$_[1]});
44 my @problems = map +{ id
=> $_, name
=> problem_name
}, problems
;
45 $htc->param(problems
=> \
@problems);
46 $htc->param(formats
=> FORMATS
);
This page took 0.050194 seconds and 4 git commands to generate.