hydra/src/root/project.tt

290 lines
8.7 KiB
Plaintext
Raw Normal View History

[% WRAPPER layout.tt title=(edit ? (create ? "New Project" : "Editing Project $curProject.name") : "Project $curProject.name") %]
2008-11-17 23:59:20 +00:00
[% PROCESS common.tt %]
2008-11-13 14:54:50 +00:00
[% USE HTML %]
2008-11-10 13:33:12 +00:00
2008-11-17 23:59:20 +00:00
[% BLOCK renderSelection %]
2008-11-13 14:54:50 +00:00
[% IF edit %]
2008-11-17 23:59:20 +00:00
<select [% HTML.attributes(id => param, name => param) %]>
[% FOREACH name IN options.keys.sort %]
<option [% HTML.attributes(value => name) %] [% IF name == curValue; "selected='selected'"; END %]>[% options.$name %]</option>
[% END %]
</select>
2008-11-13 14:54:50 +00:00
[% ELSE %]
2008-11-17 23:59:20 +00:00
[% options.$curValue %]
2008-11-13 14:54:50 +00:00
[% END %]
[% END %]
2008-11-25 16:35:44 +00:00
[% BLOCK maybeEditString;
IF edit -%]
2008-11-17 23:59:20 +00:00
<input type="text" class="string [% extraClass %]" [% HTML.attributes(id => param, name => param, value => value) %] />
2008-11-25 16:35:44 +00:00
[% ELSE;
HTML.escape(value);
END -%]
[% END -%]
2008-11-17 11:44:51 +00:00
2008-11-18 12:13:34 +00:00
[% BLOCK renderInputAlt %]
2008-11-25 18:34:24 +00:00
[% IF edit %]
<button type="button" onclick='$(this).parents(".inputalt").remove()'><img src="/static/images/failure.gif" alt="Delete value" /></button>
[% INCLUDE maybeEditString param=param value=alt.value %]
<br />
[% ELSE %]
[% INCLUDE maybeEditString param=param value=alt.value %]
[% END %]
2008-11-18 12:13:34 +00:00
[% END %]
2008-11-17 15:31:19 +00:00
[% BLOCK renderInput %]
2009-03-04 15:25:35 +00:00
<tr class="input [% extraClass %]" [% IF id %]id="[% id %]"[% END %]>
2008-11-17 15:31:19 +00:00
<td>
2008-11-18 12:13:34 +00:00
[% IF edit %]<button type="button" onclick='$(this).parents(".input").remove()'><img src="/static/images/failure.gif" alt="Delete input" /></button>[% END -%]
2008-11-17 15:31:19 +00:00
<tt>[% INCLUDE maybeEditString param="$baseName-name" value=input.name extraClass="shortString" %]</tt>
</td>
<td>
2008-11-17 23:59:20 +00:00
[% INCLUDE renderSelection curValue=input.type param="$baseName-type" options=inputTypes %]
2008-11-17 15:31:19 +00:00
</td>
<td class="inputalts" id="[% baseName %]">
[% FOREACH alt IN input.jobsetinputalts -%]
<tt class="inputalt">
[% IF input.type == "string" && !edit %]
"[% HTML.escape(alt.value) %]"
[% ELSE %]
2008-11-18 12:13:34 +00:00
[% INCLUDE renderInputAlt alt=alt param="$baseName-values" %]
2008-11-17 15:31:19 +00:00
[% END %]
</tt>
[% END %]
2008-11-18 12:13:34 +00:00
[% IF edit %]<button type="button" onclick='return false' class="add-inputalt">+</button>[% END %]
2008-11-17 15:31:19 +00:00
</td>
</tr>
[% END %]
2008-11-13 17:55:40 +00:00
[% BLOCK renderJobset %]
2008-11-10 13:33:12 +00:00
2008-11-17 15:31:19 +00:00
<div class="jobset[% IF edit %] jobset-edit[% END %]" id="[% "jobset-$baseName" %]">
2008-11-13 09:48:10 +00:00
2008-11-18 12:13:34 +00:00
<h3>
[% IF edit %]<button type="button" onclick='$(this).parents(".jobset").remove()'><img src="/static/images/failure.gif" alt="Delete value" /></button>[% END %]
[% IF jobset %]Jobset <tt>[% jobset.name %]</tt>[% ELSE %]New jobset[% END %]
</h3>
2008-11-10 13:33:12 +00:00
2008-11-12 11:09:21 +00:00
<h4>Information</h4>
2008-11-26 19:48:04 +00:00
<table class="layoutTable">
2008-11-13 18:16:57 +00:00
[% IF edit %]
<tr>
<th>Identifier:</th>
<td>[% INCLUDE maybeEditString param="jobset-$baseName-name" value=jobset.name %]</td>
</tr>
[% END %]
2008-11-12 11:09:21 +00:00
<tr>
<th>Description:</th>
2008-11-13 17:55:40 +00:00
<td>[% INCLUDE maybeEditString param="jobset-$baseName-description" value=jobset.description %]</td>
2008-11-12 11:09:21 +00:00
</tr>
<tr>
<th>Nix expression:</th>
2008-11-13 17:55:40 +00:00
<td>
2008-11-17 11:44:51 +00:00
<tt>[% INCLUDE maybeEditString param="jobset-$baseName-nixexprpath" value=jobset.nixexprpath extraClass="shortString" %]</tt> in input
<tt>[% INCLUDE maybeEditString param="jobset-$baseName-nixexprinput" value=jobset.nixexprinput extraClass="shortString" %]</tt>
2008-11-13 17:55:40 +00:00
</td>
2008-11-12 11:09:21 +00:00
</tr>
2008-11-26 13:39:15 +00:00
[% IF !edit %]
<tr>
<th>Last checked:</th>
<td>
[% IF jobset.lastcheckedtime %]
2009-03-09 15:16:11 +00:00
[% PROCESS renderDateTime timestamp = jobset.lastcheckedtime -%][% IF jobset.errormsg -%]<em>, evaluation error</em>:
<pre class="multiLineMsg error">[% HTML.escape(jobset.errormsg) %]</pre>
[% ELSE %], <em>no errors</em>
[% END %]
[% ELSE %]
<em>never</em>
[% END %]
2008-11-26 13:39:15 +00:00
</td>
</tr>
[% END %]
2008-11-12 11:09:21 +00:00
</table>
<h4>Inputs</h4>
2008-11-10 13:33:12 +00:00
<table class="tablesorter">
<thead>
2008-11-18 12:13:34 +00:00
<tr><th>Input name</th><th>Type</th><th>Values</th></tr>
2008-11-10 13:33:12 +00:00
</thead>
2008-11-17 15:31:19 +00:00
<tbody class="inputs">
2008-11-10 13:33:12 +00:00
[% FOREACH input IN jobset.jobsetinputs -%]
2008-11-17 15:31:19 +00:00
[% INCLUDE renderInput input=input baseName="jobset-$baseName-input-$input.name" %]
2008-11-10 13:33:12 +00:00
[% END %]
2008-11-18 12:13:34 +00:00
[% IF edit %]
<tr>
<td colspan="3"><button type="button" class="add-input">Add a new input</button></td>
</tr>
[% END %]
2008-11-10 13:33:12 +00:00
</tbody>
</table>
2008-11-13 17:55:40 +00:00
</div>
[% END %]
[% IF edit %]
<form action="[% IF create %][% c.uri_for('/create-project/submit') %][% ELSE %][% c.uri_for('/project' curProject.name 'submit') %][% END %]" method="post">
2008-11-13 17:55:40 +00:00
[% END %]
[% IF create %]
<h1>New Project</h1>
[% ELSE %]
<h1>Project <tt>[% curProject.name %]</tt></h1>
[% END %]
<h2>General information</h2>
2008-11-26 19:48:04 +00:00
<table class="layoutTable">
2008-11-13 17:55:40 +00:00
[% IF edit %]
<tr>
<th>Identifier:</th>
<td><tt>[% INCLUDE maybeEditString param="name" value=curProject.name %]</tt></td>
</tr>
[% END %]
<tr>
<th>Display name:</th>
<td>[% INCLUDE maybeEditString param="displayname" value=curProject.displayname %]</td>
</tr>
<tr>
<th>Description:</th>
<td>[% INCLUDE maybeEditString param="description" value=curProject.description %]</td>
</tr>
<tr>
<th>Homepage:</th>
<td>
[% IF edit %]
[% INCLUDE maybeEditString param="homepage" value=curProject.homepage %]
[% ELSE %]
[% IF curProject.homepage %]
<a [% HTML.attributes(href => curProject.homepage) %]>[% HTML.escape(curProject.homepage) %]</a>
[% ELSE %]
<em>(not specified)</em>
[% END %]
[% END %]
</td>
</tr>
<tr>
<th>Owner:</th>
<td><tt>[% INCLUDE maybeEditString param="owner" value=curProject.owner.username edit=(edit && c.check_user_roles('admin')) %]</tt></td>
</tr>
2008-11-17 23:59:20 +00:00
<tr>
<th>Enabled:</th>
<td>
[% INCLUDE renderSelection param="enabled" curValue=curProject.enabled options={"1" = "Yes", "0" = "No"} %]
</td>
</tr>
2008-11-13 17:55:40 +00:00
</table>
[% IF !edit %]
<h2>Statistics</h2>
[% PROCESS showBuildStats %]
[% END %]
2008-11-13 17:55:40 +00:00
<h2>Jobsets</h2>
[% IF curProject.jobsets && curProject.jobsets.size > 0 || edit %]
[% IF edit %]
2008-11-18 12:13:34 +00:00
<p><button type="button" id="add-jobset">Add a new jobset</button></p>
2008-11-13 17:55:40 +00:00
<div id="jobset-template" class="template">
[% INCLUDE renderJobset jobset="" baseName="template" %]
</div>
2008-11-17 13:36:58 +00:00
2008-11-17 15:31:19 +00:00
<table class="template"> <!-- dummy wrapper needed because “hidden” trs are visible anyway -->
[% INCLUDE renderInput input="" extraClass="template" id="input-template" baseName="input-template" %]
</table>
2008-11-18 12:13:34 +00:00
<tt class="inputalt template" id="inputalt-template">
[% INCLUDE renderInputAlt alt=alt %]
2008-11-17 13:36:58 +00:00
</tt>
2008-11-18 12:48:58 +00:00
2009-03-04 15:25:35 +00:00
<script type="text/javascript">
2008-11-17 13:36:58 +00:00
$(document).ready(function() {
var id = 0;
$("#add-jobset").click(function() {
var newid = "jobset-" + id++;
2008-11-17 15:31:19 +00:00
var x = $("#jobset-template").clone(true).attr("id", newid).insertAfter($("#jobset-template")).slideDown("fast");
$("#jobset-template", x).attr("id", newid);
$("#jobset-template-name", x).attr("name", newid + "-name");
$("#jobset-template-description", x).attr("name", newid + "-description");
$("#jobset-template-nixexprpath", x).attr("name", newid + "-nixexprpath");
$("#jobset-template-nixexprinput", x).attr("name", newid + "-nixexprinput");
return false;
});
$(".add-input").click(function() {
var jobset = $(this).parents(".jobset");
var inputid = jobset.attr("id");
var newid = inputid + "-input-" + id++;
2008-11-18 12:13:34 +00:00
var x = $("#input-template").clone(true).attr("id", "").insertBefore($(this).parents("tr")).show();
2008-11-17 15:31:19 +00:00
$("#input-template-name", x).attr("name", newid + "-name");
$("#input-template-type", x).attr("name", newid + "-type");
$("#input-template", x).attr("id", newid);
2008-11-17 13:36:58 +00:00
return false;
});
2008-11-17 15:31:19 +00:00
$(".add-inputalt").click(function() {
var x = $("#inputalt-template").clone(true).insertBefore($(this)).attr("id", "").show();
$("input", x).attr("name", x.parents(".inputalts").attr("id") + "-values");
2008-11-17 13:36:58 +00:00
});
2008-11-13 17:55:40 +00:00
});
</script>
[% END %]
[% FOREACH jobset IN curProject.jobsets -%]
[% INCLUDE renderJobset jobset=jobset baseName=jobset.name %]
[% END -%]
2008-11-10 13:33:12 +00:00
2008-11-13 09:48:10 +00:00
[% ELSE %]
<p>No jobsets have been defined yet.</p>
[% END %]
2008-11-10 13:33:12 +00:00
2008-11-13 14:54:50 +00:00
[% IF edit %]
2008-11-13 17:55:40 +00:00
<hr />
2008-11-13 14:54:50 +00:00
2008-11-17 23:59:20 +00:00
<p><button type="submit"><img src="/static/images/success.gif" />[%IF create %]Create[% ELSE %]Apply changes[% END %]</button></p>
2008-11-13 14:54:50 +00:00
</form>
2008-11-13 17:55:40 +00:00
[% IF !create %]
<form action="[% c.uri_for('/project' curProject.name 'delete') %]" method="post">
2008-11-17 23:59:20 +00:00
<p><button id="delete-project" type="submit"><img src="/static/images/failure.gif" />Delete this project</button></p>
2008-11-13 17:55:40 +00:00
</form>
2008-11-13 14:54:50 +00:00
2009-03-04 15:25:35 +00:00
<script type="text/javascript">
2008-11-13 17:55:40 +00:00
$("#delete-project").click(function() {
return confirm("Are you sure you want to delete this project?");
});
</script>
[% END %]
2008-11-13 14:54:50 +00:00
[% END %]
2008-11-10 13:33:12 +00:00
[% END %]