]> iEval git - gruntmaster-page.git/blame - lib/Gruntmaster/Page/Pb/Entry.pm
Add form.js markup and CSS
[gruntmaster-page.git] / lib / Gruntmaster / Page / Pb / Entry.pm
CommitLineData
42546e6c
MG
1package Gruntmaster::Page::Pb::Entry;
2
3use 5.014000;
4use strict;
5use warnings;
bb95f538
MG
6use Gruntmaster::Page::Base pb_entry => '<tmpl_var name>';
7our @ISA = qw/Gruntmaster::Page::Base/;
42546e6c
MG
8our $VERSION = '0.001';
9
bb95f538 10use constant TEMPLATES => {
cd9af27e 11 en => <<'HTML',
a94f8453
MG
12<div class="row">
13<div class="col-md-9">
7b5883d1 14<tmpl_var ESCAPE=0 statement>
a94f8453 15</div>
42546e6c 16
a94f8453 17<div class="col-md-3">
0a9ccdd8
MG
18<dl class="dl-horizontal">
19<dt>Author</dt> <dd><tmpl_var author></dd>
20<dt>Owner</dt> <dd><tmpl_var owner></dd>
21</dl>
22
fe78f0c1 23<tmpl_if cansubmit>
42546e6c 24<h1>Submit solution</h1>
a94f8453 25<form action="https://gm.ieval.ro/action/submit" method="POST" enctype="multipart/form-data" role="form">
42546e6c 26<input type="hidden" name="problem" value="<tmpl_var id>">
fe78f0c1 27<tmpl_if_defined contest><input type="hidden" name="contest" value="<tmpl_var contest>"></tmpl_if_defined>
42546e6c 28
a94f8453
MG
29<div class="form-group"><label for="prog">File:</label><input id="prog" name="prog" required type="file"></div>
30<div class="form-group"><label for="source_code">Source code:</label> <textarea class="form-control" id="source_code" name="source_code"></textarea></div>
31<div class="form-group"><label for="prog_format">File format:</label><select id="prog_format" name="prog_format" class="form-control" required>
42546e6c 32<tmpl_loop formats><option value="<tmpl_var _>"><tmpl_var _></option>
a94f8453 33</tmpl_loop></select></div>
42546e6c 34
a94f8453 35<input type="submit" value="Submit job" class="btn btn-primary">
6d28cb38 36</form>
fe78f0c1 37</tmpl_if>
a94f8453 38</div>
42546e6c 39HTML
bb95f538 40};
42546e6c 41
bb95f538 42sub _generate{
7dc32473
MG
43 my ($self, $htc, $lang, $logger, $contest, $id) = @_;
44 debug $logger => "language is '$lang', contest is '$contest', id is '$id'";
cd9af27e
MG
45
46 $htc->param(cansubmit => 1);
a94f8453 47 if ($contest) {
9f8cf806 48 $htc->param(cansubmit => time <= contest_end $contest);
cd9af27e
MG
49 $htc->param(contest => $contest);
50 }
c2a23f84 51 $htc->param(formats => Gruntmaster::Page::Submit::FORMATS);
cd9af27e 52 $htc->param(id => $id);
3da9c3c2 53 local $Gruntmaster::Data::contest = $contest if $contest;
cd9af27e 54 $htc->param(name => problem_name $id);
2ee6edcf
MG
55 $htc->param(author => problem_author $id);
56 $htc->param(owner => problem_owner $id);
3da9c3c2 57 $htc->param(statement => problem_statement $id);
42546e6c
MG
58}
59
601
This page took 0.037334 seconds and 4 git commands to generate.