blob: 3c5d789acb64f191d1ecc36b5f619f57629a0235 [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. -->
<!DOCTYPE html>
<html xmlns:wicket="http://wicket.apache.org">
<head>
<meta charset="utf-8" />
<title>Wicket extend</title>
</head>
<body>
<wicket:extend>
<h2>
<wicket:message key="navbar.menu.crawls">Crawls</wicket:message>
</h2>
<div class="row">
<div class="col-lg-8">
<div class="row">
<div class="col-lg-8 col-md-offset-10">
<button class="btn btn-success btn-default" wicket:id="newCrawl">
<i class="fa fa-plus"></i> Add new crawl
</button>
</div>
</div>
<table class="table table-hover table-striped tablesorter">
<thead>
<tr>
<th class="header col-md-2">Crawl name</th>
<th class="header col-md-2">Seed list</th>
<th class="header col-md-2">Status</th>
<th class="header col-md-2">Progress</th>
<th></th>
</tr>
</thead>
<tbody wicket:id="crawlsTable">
<tr wicket:id="crawls">
<td>
<a href="#" data-toggle="modal" data-target="#crawlInfo" wicket:id="edit">
<span wicket:id="crawlName">Crawl name</span>
</a>
</td>
<td>
<span wicket:id="seedList.name">Google list</span>
</td>
<td>
<span wicket:id="status" class="label">Finished</span>
</td>
<td>
<span wicket:id="progress">50</span>
%
</td>
<td>
<button class="btn btn-sm btn-default" type="button" wicket:id="start">
<span class="fa fa-play"></span>
</button>
<button class="btn btn-sm btn-danger" type="button" wicket:id="delete">
<span class="fa fa-trash-o"></span>
</button>
</td>
</tr>
</tbody>
</table>
<div wicket:id="crawl"></div>
</div>
<div class="col-lg-4">
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">Help</h3>
</div>
<div class="panel-body">
<p>Some help about crawling</p>
</div>
</div>
</div>
</div>
<!--row-->
</wicket:extend>
</body>
</html>