blob: a6ec370e2ea005da772f07c4515fe2031184184c [file] [log] [blame]
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<wicket:panel>
<wicket:link>
<link rel="stylesheet" type="text/css" href="EventToWorkflowViewer.css"/>
</wicket:link>
<h3 id="event_header_title">Event to Workflow Map</h3>
<p>Select an event, and then click on "Get Workflows" to obtain a list of workflows associated
with the selected event.</p>
<form wicket:id="event_workflow_frm">
<table id="event_workflow_tbl">
<tr>
<td>Event</td>
<td><select wicket:id="event_list">
<wicket:remove>
<option value="test">test</option>
</wicket:remove>
</select>
</td>
<td><input type="submit" id="get_workflow_button" value="Get Worfklows!"></td>
</tr>
</table>
</form>
<div wicket:id="wtable">
<hr>
<h4>Workflows for <span wicket:id="selectedEvent">test</span> event</h4>
<table>
<tr>
<td>Workflow</td>
</tr>
<tr wicket:id="workflow_list">
<td><a href="#" wicket:id="workflow_link"><span wicket:id="workflow_name">Test Workflow</span></a></td>
</tr>
</table>
</div>
</wicket:panel>