* adjust browse page and update zui.
This commit is contained in:
@@ -13,60 +13,65 @@
|
||||
<?php include '../../common/view/header.html.php';?>
|
||||
<?php include '../../common/view/tablesorter.html.php';?>
|
||||
<?php js::set('confirmDelete', $lang->build->confirmDelete)?>
|
||||
<div id='titlebar'>
|
||||
<div class='heading'>
|
||||
<?php echo html::icon($lang->icons['build']);?> <?php echo $lang->project->build;?>
|
||||
<main id="main">
|
||||
<div class="container">
|
||||
<div id="mainMenu" class="clearfix">
|
||||
<div class="btn-toolbar pull-left">
|
||||
<span class='btn btn-link btn-active-text'> <span class='text'><?php echo $lang->project->build;?></span></span>
|
||||
</div>
|
||||
<div class="btn-toolbar pull-right">
|
||||
<?php common::printIcon('build', 'create', "project=$project->id");?>
|
||||
</div>
|
||||
</div>
|
||||
<div id="mainContent">
|
||||
<table class="main-table table has-sort-head table-lg table-fixed tablesorter" id='buildList'>
|
||||
<thead>
|
||||
<tr>
|
||||
<th class='w-id'><?php echo $lang->build->id;?></th>
|
||||
<th class='w-120px'><?php echo $lang->build->product;?></th>
|
||||
<th><?php echo $lang->build->name;?></th>
|
||||
<th><?php echo $lang->build->scmPath;?></th>
|
||||
<th><?php echo $lang->build->filePath;?></th>
|
||||
<th class='w-date'><?php echo $lang->build->date;?></th>
|
||||
<th class='w-user'><?php echo $lang->build->builder;?></th>
|
||||
<th class='w-200px'><?php echo $lang->actions;?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach($builds as $build):?>
|
||||
<tr>
|
||||
<td><?php echo $build->id;?></td>
|
||||
<td title='<?php echo $build->productName?>'><?php echo $build->productName;?></td>
|
||||
<td class='text-left'>
|
||||
<?php if($build->branchName) echo "<span class='label label-info label-badge'>{$build->branchName}</span>"?>
|
||||
<?php echo html::a($this->createLink('build', 'view', "build=$build->id"), $build->name);?>
|
||||
</td>
|
||||
<td class='text-left' title="<?php echo $build->scmPath?>"><?php echo strpos($build->scmPath, 'http') === 0 ? html::a($build->scmPath) : $build->scmPath;?></td>
|
||||
<td class='text-left' title="<?php echo $build->filePath?>"><?php echo strpos($build->filePath, 'http') === 0 ? html::a($build->filePath) : $build->filePath;?></td>
|
||||
<td><?php echo $build->date?></td>
|
||||
<td><?php echo $users[$build->builder]?></td>
|
||||
<td class='c-actions'>
|
||||
<?php
|
||||
if(common::hasPriv('build', 'linkstory') and common::hasPriv('build', 'view'))
|
||||
{
|
||||
echo html::a($this->createLink('build', 'view', "buildID=$build->id&type=story&link=true"), "<i class='icon icon-link'></i>", '', "class='btn' title='{$lang->build->linkStory}'");
|
||||
}
|
||||
common::printIcon('testtask', 'create', "product=$build->product&project=$project->id&build=$build->id", $build, 'list', 'bullhorn');
|
||||
$lang->project->bug = $lang->project->viewBug;
|
||||
common::printIcon('project', 'bug', "project=$project->id&orderBy=status&build=$build->id", $build, 'list');
|
||||
common::printIcon('build', 'edit', "buildID=$build->id", $build, 'list');
|
||||
if(common::hasPriv('build', 'delete', $build))
|
||||
{
|
||||
$deleteURL = $this->createLink('build', 'delete', "buildID=$build->id&confirm=yes");
|
||||
echo html::a("javascript:ajaxDelete(\"$deleteURL\",\"buildList\",confirmDelete)", '<i class="icon-trash"></i>', '', "class='btn' title='{$lang->build->delete}'");
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach;?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<div class='actions'>
|
||||
<?php common::printIcon('build', 'create', "project=$project->id");?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<table class='table tablesorter table-fixed' id='buildList'>
|
||||
<thead>
|
||||
<tr class='colhead'>
|
||||
<th class='w-id'><?php echo $lang->build->id;?></th>
|
||||
<th class='w-120px'><?php echo $lang->build->product;?></th>
|
||||
<th><?php echo $lang->build->name;?></th>
|
||||
<th><?php echo $lang->build->scmPath;?></th>
|
||||
<th><?php echo $lang->build->filePath;?></th>
|
||||
<th class='w-date'><?php echo $lang->build->date;?></th>
|
||||
<th class='w-user'><?php echo $lang->build->builder;?></th>
|
||||
<th class='w-120px'><?php echo $lang->actions;?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach($builds as $build):?>
|
||||
<tr class='text-center'>
|
||||
<td><?php echo $build->id;?></td>
|
||||
<td title='<?php echo $build->productName?>'><?php echo $build->productName;?></td>
|
||||
<td class='text-left'>
|
||||
<?php if($build->branchName) echo "<span class='label label-info label-badge'>{$build->branchName}</span>"?>
|
||||
<?php echo html::a($this->createLink('build', 'view', "build=$build->id"), $build->name);?>
|
||||
</td>
|
||||
<td class='text-left' title="<?php echo $build->scmPath?>"><?php echo strpos($build->scmPath, 'http') === 0 ? html::a($build->scmPath) : $build->scmPath;?></td>
|
||||
<td class='text-left' title="<?php echo $build->filePath?>"><?php echo strpos($build->filePath, 'http') === 0 ? html::a($build->filePath) : $build->filePath;?></td>
|
||||
<td><?php echo $build->date?></td>
|
||||
<td><?php echo $users[$build->builder]?></td>
|
||||
<td class='text-right'>
|
||||
<?php
|
||||
if(common::hasPriv('build', 'linkstory') and common::hasPriv('build', 'view'))
|
||||
{
|
||||
echo html::a($this->createLink('build', 'view', "buildID=$build->id&type=story&link=true"), "<i class='icon icon-link'></i>", '', "class='btn-icon' title='{$lang->build->linkStory}'");
|
||||
}
|
||||
common::printIcon('testtask', 'create', "product=$build->product&project=$project->id&build=$build->id", $build, 'list', 'bullhorn');
|
||||
$lang->project->bug = $lang->project->viewBug;
|
||||
common::printIcon('project', 'bug', "project=$project->id&orderBy=status&build=$build->id", $build, 'list');
|
||||
common::printIcon('build', 'edit', "buildID=$build->id", $build, 'list');
|
||||
if(common::hasPriv('build', 'delete', $build))
|
||||
{
|
||||
$deleteURL = $this->createLink('build', 'delete', "buildID=$build->id&confirm=yes");
|
||||
echo html::a("javascript:ajaxDelete(\"$deleteURL\",\"buildList\",confirmDelete)", '<i class="icon-remove"></i>', '', "class='btn-icon' title='{$lang->build->delete}'");
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach;?>
|
||||
</tbody>
|
||||
</table>
|
||||
</main>
|
||||
<?php include '../../common/view/footer.html.php';?>
|
||||
|
||||
@@ -13,81 +13,91 @@
|
||||
<?php include '../../common/view/header.html.php';?>
|
||||
<?php include '../../common/view/tablesorter.html.php';?>
|
||||
<?php js::set('confirmDelete', $lang->testtask->confirmDelete)?>
|
||||
<div id='titlebar'>
|
||||
<div class='heading'>
|
||||
<?php echo html::icon($lang->icons['test']);?> <?php echo $lang->testtask->browse;?>
|
||||
</div>
|
||||
<div class='actions'>
|
||||
<?php
|
||||
common::printIcon('testreport', 'browse', "objectID=$projectID&objectType=project", '', 'button','flag');
|
||||
common::printIcon('testtask', 'create', "product=0&project=$projectID");
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
<main id="main">
|
||||
<div class="container">
|
||||
<div id="mainMenu" class="clearfix">
|
||||
<div class="btn-toolbar pull-left">
|
||||
<span class='btn btn-link btn-active-text'><span class='text'><?php echo $lang->testtask->browse;?></span></span>
|
||||
</div>
|
||||
<div class="btn-toolbar pull-right">
|
||||
<?php
|
||||
common::printIcon('testreport', 'browse', "objectID=$projectID&objectType=project", '', 'button','flag');
|
||||
common::printIcon('testtask', 'create', "product=0&project=$projectID");
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
<div id="mainContent">
|
||||
<form class="main-table table-testtask" data-ride="table" method="post" target='hiddenwin' id='testtaskForm'>
|
||||
<table class="table has-sort-head table-lg tablesorter" id='taskList'>
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="w-100px">
|
||||
<?php if($tasks):?>
|
||||
<div class="checkbox-primary check-all" title="<?php echo $lang->selectAll?>">
|
||||
<label></label>
|
||||
</div>
|
||||
<?php endif;?>
|
||||
<?php echo $lang->idAB;?>
|
||||
</th>
|
||||
<th class='w-150px'><?php echo $lang->testtask->product;?></th>
|
||||
<th><?php echo $lang->testtask->name;?></th>
|
||||
<th><?php echo $lang->testtask->build;?></th>
|
||||
<th class='w-user'><?php echo $lang->testtask->owner;?></th>
|
||||
<th class='w-100px'><?php echo $lang->testtask->begin;?></th>
|
||||
<th class='w-100px'><?php echo $lang->testtask->end;?></th>
|
||||
<th class='w-80px'><?php echo $lang->statusAB;?></th>
|
||||
<th class='w-200px {sorter:false}'><?php echo $lang->actions;?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach($tasks as $task):?>
|
||||
<tr>
|
||||
<td class="c-id">
|
||||
<div class="checkbox-primary">
|
||||
<input type='checkbox' name='taskIdList[]' value='<?php echo $task->id;?>' />
|
||||
<label></label>
|
||||
<?php printf('%03d', $task->id);?>
|
||||
</div>
|
||||
</td>
|
||||
<td title="<?php echo zget($products, $task->product, '')?>"><?php echo zget($products, $task->product, '');?></td>
|
||||
<td class='text-left' title="<?php echo $task->name?>"><?php echo html::a($this->createLink('testtask', 'view', "taskID=$task->id"), $task->name);?></td>
|
||||
<td title="<?php echo $task->buildName?>"><?php echo ($task->build == 'trunk' || empty($task->buildName)) ? $lang->trunk : html::a($this->createLink('build', 'view', "buildID=$task->build"), $task->buildName);?></td>
|
||||
<td><?php echo $users[$task->owner];?></td>
|
||||
<td><?php echo $task->begin?></td>
|
||||
<td><?php echo $task->end?></td>
|
||||
<td class='status-<?php echo $task->status?>'><?php echo $lang->testtask->statusList[$task->status];?></td>
|
||||
<td class='c-actions'>
|
||||
<?php
|
||||
common::printIcon('testtask', 'cases', "taskID=$task->id", $task, 'list', 'sitemap');
|
||||
common::printIcon('testtask', 'linkCase', "taskID=$task->id", $task, 'list', 'link');
|
||||
common::printIcon('testtask', 'edit', "taskID=$task->id", $task, 'list');
|
||||
common::printIcon('testreport', 'browse', "objectID=$task->product&objectType=product&extra=$task->id", $task, 'list','flag');
|
||||
|
||||
<form method='post' target='hiddenwin' id='testtaskForm'>
|
||||
<table class='table tablesorter table-fixed' id='taskList'>
|
||||
<thead>
|
||||
<tr>
|
||||
<th class='w-id'><?php echo $lang->idAB;?></th>
|
||||
<th class='w-150px'><?php echo $lang->testtask->product;?></th>
|
||||
<th><?php echo $lang->testtask->name;?></th>
|
||||
<th><?php echo $lang->testtask->build;?></th>
|
||||
<th class='w-user'><?php echo $lang->testtask->owner;?></th>
|
||||
<th class='w-100px'><?php echo $lang->testtask->begin;?></th>
|
||||
<th class='w-100px'><?php echo $lang->testtask->end;?></th>
|
||||
<th class='w-80px'><?php echo $lang->statusAB;?></th>
|
||||
<th class='w-120px {sorter:false}'><?php echo $lang->actions;?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach($tasks as $task):?>
|
||||
<tr class='text-center'>
|
||||
<td class='cell-id'>
|
||||
<?php
|
||||
echo "<input type='checkbox' name='taskIdList[]' value='{$task->id}' /> ";
|
||||
echo html::a($this->createLink('testtask', 'view', "taskID=$task->id"), sprintf('%03d', $task->id));
|
||||
?>
|
||||
</td>
|
||||
<td title="<?php echo zget($products, $task->product, '')?>"><?php echo zget($products, $task->product, '');?></td>
|
||||
<td class='text-left' title="<?php echo $task->name?>"><?php echo html::a($this->createLink('testtask', 'view', "taskID=$task->id"), $task->name);?></td>
|
||||
<td title="<?php echo $task->buildName?>"><?php echo ($task->build == 'trunk' || empty($task->buildName)) ? $lang->trunk : html::a($this->createLink('build', 'view', "buildID=$task->build"), $task->buildName);?></td>
|
||||
<td><?php echo $users[$task->owner];?></td>
|
||||
<td><?php echo $task->begin?></td>
|
||||
<td><?php echo $task->end?></td>
|
||||
<td class='status-<?php echo $task->status?>'><?php echo $lang->testtask->statusList[$task->status];?></td>
|
||||
<td>
|
||||
<?php
|
||||
common::printIcon('testtask', 'cases', "taskID=$task->id", $task, 'list', 'sitemap');
|
||||
common::printIcon('testtask', 'linkCase', "taskID=$task->id", $task, 'list', 'link');
|
||||
common::printIcon('testtask', 'edit', "taskID=$task->id", $task, 'list');
|
||||
common::printIcon('testreport', 'browse', "objectID=$task->product&objectType=product&extra=$task->id", $task, 'list','flag');
|
||||
|
||||
if(common::hasPriv('testtask', 'delete', $task))
|
||||
{
|
||||
$deleteURL = $this->createLink('testtask', 'delete', "taskID=$task->id&confirm=yes");
|
||||
echo html::a("javascript:ajaxDelete(\"$deleteURL\",\"taskList\",confirmDelete)", '<i class="icon-remove"></i>', '', "class='btn-icon' title='{$lang->testtask->delete}'");
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach;?>
|
||||
</tbody>
|
||||
<tfoot>
|
||||
<tr>
|
||||
<td colspan='9'>
|
||||
<div class='table-actions clearfix'>
|
||||
if(common::hasPriv('testtask', 'delete', $task))
|
||||
{
|
||||
$deleteURL = $this->createLink('testtask', 'delete', "taskID=$task->id&confirm=yes");
|
||||
echo html::a("javascript:ajaxDelete(\"$deleteURL\",\"taskList\",confirmDelete)", '<i class="icon-trash"></i>', '', "class='btn' title='{$lang->testtask->delete}'");
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach;?>
|
||||
</tbody>
|
||||
</table>
|
||||
<?php if($tasks):?>
|
||||
<div class="table-footer">
|
||||
<div class="checkbox-primary check-all"><label><?php echo $lang->selectAll?></label></div>
|
||||
<div class="table-actions btn-toolbar">
|
||||
<?php
|
||||
echo html::selectButton();
|
||||
|
||||
$actionLink = $this->createLink('testreport', 'browse', "objectID=$projectID&objctType=project");
|
||||
$misc = common::hasPriv('testreport', 'browse') ? "onclick=\"setFormAction('$actionLink', '', '#testtaskForm')\"" : "disabled='disabled'";
|
||||
echo html::commonButton($lang->testreport->common, $misc);
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
</form>
|
||||
<?php endif;?>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<?php include '../../common/view/footer.html.php';?>
|
||||
|
||||
@@ -13,63 +13,69 @@
|
||||
<?php include '../../common/view/header.html.php';?>
|
||||
<?php include '../../common/view/tablesorter.html.php';?>
|
||||
<?php js::set('confirmDelete', $lang->release->confirmDelete)?>
|
||||
<div>
|
||||
<div id='titlebar'>
|
||||
<div class='heading'>
|
||||
<i class='icon-tags'></i>
|
||||
<?php echo $lang->release->browse;?>
|
||||
<?php if($product->type !== 'normal') echo '<span class="label label-info">' . $branches[$branch] . '</span>';?>
|
||||
<main id="main">
|
||||
<div class="container">
|
||||
<div id="mainMenu" class="clearfix">
|
||||
<div class="btn-toolbar pull-left">
|
||||
<span class='btn btn-link btn-active-text'>
|
||||
<span class='text'><?php echo $lang->release->browse;?></span>
|
||||
<?php if($product->type !== 'normal'):?>
|
||||
<span class='label label-light label-badge'><?php echo $branches[$branch];?></span>
|
||||
<?php endif;?>
|
||||
</span>
|
||||
</div>
|
||||
<div class="btn-toolbar pull-right">
|
||||
<?php common::printIcon('release', 'create', "product=$product->id&branch=$branch");?>
|
||||
</div>
|
||||
</div>
|
||||
<div class='actions'>
|
||||
<?php common::printIcon('release', 'create', "product=$product->id&branch=$branch");?>
|
||||
<div id="mainContent">
|
||||
<table class="main-table table has-sort-head table-lg table-fixed tablesorter" id='releaseList'>
|
||||
<thead>
|
||||
<tr>
|
||||
<th class='w-id'><?php echo $lang->release->id;?></th>
|
||||
<th><?php echo $lang->release->name;?></th>
|
||||
<th><?php echo $lang->release->build;?></th>
|
||||
<?php if($product->type != 'normal'):?>
|
||||
<th class='w-100px'><?php echo $lang->product->branch;?></th>
|
||||
<?php endif;?>
|
||||
<th class='w-100px'><?php echo $lang->release->date;?></th>
|
||||
<th class='w-100px'><?php echo $lang->release->status;?></th>
|
||||
<th class='w-200px'><?php echo $lang->actions;?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach($releases as $release):?>
|
||||
<tr>
|
||||
<td class='text-center'><?php echo $release->id;?></td>
|
||||
<td><?php echo html::a(inlink('view', "release=$release->id"), $release->name);?></td>
|
||||
<td title='<?php echo $release->buildName?>'><?php echo html::a($this->createLink('build', 'view', "buildID=$release->buildID"), $release->buildName, '_blank');?></td>
|
||||
<?php if($product->type != 'normal'):?>
|
||||
<td class='text-center'><?php echo $branches[$release->branch];?></td>
|
||||
<?php endif;?>
|
||||
<td class='text-center'><?php echo $release->date;?></td>
|
||||
<td class='text-center'><?php echo $lang->release->statusList[$release->status];?></td>
|
||||
<td class='c-actions'>
|
||||
<?php
|
||||
if(common::hasPriv('release', 'linkStory')) echo html::a(inlink('view', "releaseID=$release->id&type=story&link=true"), '<i class="icon-link"></i> ', '', "class='btn' title='{$lang->release->linkStory}'");
|
||||
if(common::hasPriv('release', 'linkBug') and $this->config->global->flow != 'onlyStory') echo html::a(inlink('view', "releaseID=$release->id&type=bug&link=true"), '<i class="icon-bug"></i> ', '', "class='btn' title='{$lang->release->linkBug}'");
|
||||
if(common::hasPriv('release', 'changeStatus', $release))
|
||||
{
|
||||
$changedStatus = $release->status == 'normal' ? 'terminate' : 'normal';
|
||||
echo html::a(inlink('changeStatus', "releaseID=$release->id&status=$changedStatus"), '<i class="icon-' . ($release->status == 'normal' ? 'pause' : 'play') . '"></i> ', 'hiddenwin', "class='btn' title='{$lang->release->changeStatusList[$changedStatus]}'");
|
||||
}
|
||||
common::printIcon('release', 'edit', "release=$release->id", $release, 'list');
|
||||
if(common::hasPriv('release', 'delete', $release))
|
||||
{
|
||||
$deleteURL = $this->createLink('release', 'delete', "releaseID=$release->id&confirm=yes");
|
||||
echo html::a("javascript:ajaxDelete(\"$deleteURL\",\"releaseList\",confirmDelete)", '<i class="icon-trash"></i>', '', "class='btn' title='{$lang->release->delete}'");
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach;?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
<table class='table tablesorter' id='releaseList'>
|
||||
<thead>
|
||||
<tr class='colhead'>
|
||||
<th class='w-id'><?php echo $lang->release->id;?></th>
|
||||
<th><?php echo $lang->release->name;?></th>
|
||||
<th><?php echo $lang->release->build;?></th>
|
||||
<?php if($product->type != 'normal'):?>
|
||||
<th class='w-100px'><?php echo $lang->product->branch;?></th>
|
||||
<?php endif;?>
|
||||
<th class='w-100px'><?php echo $lang->release->date;?></th>
|
||||
<th class='w-100px'><?php echo $lang->release->status;?></th>
|
||||
<th class='w-150px'><?php echo $lang->actions;?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php foreach($releases as $release):?>
|
||||
<tr>
|
||||
<td class='text-center'><?php echo $release->id;?></td>
|
||||
<td><?php echo html::a(inlink('view', "release=$release->id"), $release->name);?></td>
|
||||
<td title='<?php echo $release->buildName?>'><?php echo html::a($this->createLink('build', 'view', "buildID=$release->buildID"), $release->buildName, '_blank');?></td>
|
||||
<?php if($product->type != 'normal'):?>
|
||||
<td class='text-center'><?php echo $branches[$release->branch];?></td>
|
||||
<?php endif;?>
|
||||
<td class='text-center'><?php echo $release->date;?></td>
|
||||
<td class='text-center'><?php echo $lang->release->statusList[$release->status];?></td>
|
||||
<td class='text-center'>
|
||||
<?php
|
||||
if(common::hasPriv('release', 'linkStory')) echo html::a(inlink('view', "releaseID=$release->id&type=story&link=true"), '<i class="icon-link"></i> ', '', "class='btn-icon' title='{$lang->release->linkStory}'");
|
||||
if(common::hasPriv('release', 'linkBug') and $this->config->global->flow != 'onlyStory') echo html::a(inlink('view', "releaseID=$release->id&type=bug&link=true"), '<i class="icon-bug"></i> ', '', "class='btn-icon' title='{$lang->release->linkBug}'");
|
||||
if(common::hasPriv('release', 'changeStatus', $release))
|
||||
{
|
||||
$changedStatus = $release->status == 'normal' ? 'terminate' : 'normal';
|
||||
echo html::a(inlink('changeStatus', "releaseID=$release->id&status=$changedStatus"), '<i class="icon-' . ($release->status == 'normal' ? 'pause' : 'play') . '"></i> ', 'hiddenwin', "class='btn-icon' title='{$lang->release->changeStatusList[$changedStatus]}'");
|
||||
}
|
||||
common::printIcon('release', 'edit', "release=$release->id", $release, 'list');
|
||||
if(common::hasPriv('release', 'delete', $release))
|
||||
{
|
||||
$deleteURL = $this->createLink('release', 'delete', "releaseID=$release->id&confirm=yes");
|
||||
echo html::a("javascript:ajaxDelete(\"$deleteURL\",\"releaseList\",confirmDelete)", '<i class="icon-remove"></i>', '', "class='btn-icon' title='{$lang->release->delete}'");
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach;?>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
</main>
|
||||
<?php include '../../common/view/footer.html.php';?>
|
||||
|
||||
+9
-8
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.
@@ -11,10 +11,6 @@
|
||||
<glyph unicode="" glyph-name="angle-left" d="M687.557 66.667l-66.666-66.666-284.448 284.448 284.448 284.448 66.666-66.666-217.777-217.777z" />
|
||||
<glyph unicode="" glyph-name="angle-right" d="M336.443 66.675l217.777 217.777-217.777 217.777 66.666 66.666 284.448-284.448-284.448-284.448z" />
|
||||
<glyph unicode="" glyph-name="angle-top" d="M296.425 110.666l-65.99 65.99 281.565 281.565 281.565-281.565-65.99-65.99-215.572 215.572z" />
|
||||
<glyph unicode="" glyph-name="keyboard_arrow_down" d="M316 476.667l196-196 196 196 60-60-256-256-256 256z" />
|
||||
<glyph unicode="" glyph-name="keyboard_arrow_left" d="M658 124.667l-60-60-256 256 256 256 60-60-196-196z" />
|
||||
<glyph unicode="" glyph-name="keyboard_arrow_right" d="M366 112.667l196 196-196 196 60 60 256-256-256-256z" />
|
||||
<glyph unicode="" glyph-name="keyboard_arrow_up" d="M316 152.667l-60 60 256 256 256-256-60-60-196 196z" />
|
||||
<glyph unicode="" glyph-name="check" d="M365.825 107.329l482.269 482.269 64.019-64.019-546.287-546.287-253.938 253.938 64.019 64.019z" />
|
||||
<glyph unicode="" glyph-name="ellipsis-v" d="M512 58.219c61.214 0 114.443-53.229 114.443-114.443s-53.229-114.443-114.443-114.443-114.443 53.229-114.443 114.443 53.229 114.443 114.443 114.443zM512 398.887c61.214 0 114.443-53.229 114.443-114.443s-53.229-114.443-114.443-114.443-114.443 53.229-114.443 114.443 53.229 114.443 114.443 114.443zM512 510.669c-61.214 0-114.443 53.229-114.443 114.443s53.229 114.443 114.443 114.443 114.443-53.229 114.443-114.443-53.229-114.443-114.443-114.443z" />
|
||||
<glyph unicode="" glyph-name="circle" d="M512-80.926c200.847 0 365.37 164.523 365.37 365.37s-164.523 365.37-365.37 365.37-365.37-164.523-365.37-365.37 164.523-365.37 365.37-365.37zM512 739.556c252.127 0 455.112-202.984 455.112-455.112s-202.984-455.112-455.112-455.112-455.112 202.984-455.112 455.112 202.984 455.112 455.112 455.112z" />
|
||||
@@ -37,6 +33,7 @@
|
||||
<glyph unicode="" glyph-name="bullhorn" d="M838.917-88.693l-435.89 159.826v426.203l435.89 159.826v-745.857zM185.083 71.134v426.203h108.972v-426.203h-108.972zM305.955 603.889h-176.569c-29.423 0-53.276-23.852-53.276-53.276v-532.755c0-29.423 23.852-53.276 53.276-53.276h188.295l559.868-189.317c27.874-9.424 58.109 5.53 67.533 33.403 1.859 5.5 2.807 11.262 2.807 17.065v917.434c0 29.423-23.852 53.276-53.276 53.276-5.704 0-11.371-0.917-16.786-2.713l-571.873-189.843z" />
|
||||
<glyph unicode="" glyph-name="bug" d="M298.668 142.045v270.4h426.666v-270.294c-0.146-117.57-91.696-199.040-212.529-199.040-120.869 0-213.991 81.47-214.137 198.934zM408.358 625.779h204.836l73.435-127.68h-349.366l71.095 127.68zM810.667 142.045v57.066h170.666c23.564 0 42.666 19.102 42.666 42.666v0.64c0 23.564-19.102 42.666-42.666 42.666h-170.666v143.381l133.611 90.68c11.7 7.941 18.706 21.162 18.706 35.304v114.026c0 23.546-19.089 42.635-42.635 42.635v0 0c-23.546 0-42.635-19.089-42.635-42.635v-81.231l-108.264-80.645-99.049 182.221c-7.467 13.737-21.851 22.29-37.486 22.29h-243.931c-16.146 0-30.91-9.115-38.144-23.55l-90.854-181.281-113.956 80.965v81.232c0 23.546-19.087 42.634-42.634 42.634v0 0c-23.546 0-42.634-19.087-42.634-42.634v-112.851c0-14.064 6.93-27.224 18.526-35.18l134.044-91.98v-144.021l-170.539 0.511c-23.564 0.071-42.724-18.974-42.795-42.539 0-0.042 0-0.085 0-0.127v-0.512c0-23.564 19.102-42.666 42.666-42.666h170.666v-57.066c0-6.367 0.585-12.592 0.987-18.89l-124.264-92.607c-10.805-8.052-17.171-20.736-17.171-34.211v-95.892c0-23.564 19.102-42.666 42.666-42.666h13.141c23.564 0 42.666 19.102 42.666 42.666v62.936l84.639 65.064c40.447-110.029 129.792-170.666 256.805-170.666 126.574 0 215.905 61.207 256.646 170.666l84.785-63.996v-64.004c0-23.564 19.102-42.666 42.666-42.666h11.289c23.564 0 42.666 19.102 42.666 42.666v95.754c0 13.554-6.439 26.3-17.349 34.342l-123.939 91.369c0.475 6.687 1.060 13.34 1.097 20.135z" />
|
||||
<glyph unicode="" glyph-name="list-alt" d="M204.8 233.245h102.4v102.4h-102.4zM409.6 233.245h409.6v102.4h-409.6zM204.8 28.444h102.4v102.4h-102.4zM409.6 28.444h409.6v102.4h-409.6zM102.4-125.156v614.4h819.199v-614.4h-819.199zM102.4 591.644v102.4h819.199v-102.4h-819.199zM102.4-227.555h819.199c56.554 0 102.4 45.846 102.4 102.4v819.199c0 56.554-45.846 102.4-102.4 102.4h-819.199c-56.554 0-102.4-45.846-102.4-102.4v-819.199c0-56.554 45.846-102.4 102.4-102.4z" />
|
||||
<glyph unicode="" glyph-name="fork" d="M625.777 739.554l130.277-130.277-163.84-163.84 80.781-80.781 163.84 163.84 130.277-130.277v341.334zM398.223 739.554h-341.334v-341.334l130.277 130.277 267.944-267.377v-431.783h113.777v478.436l-300.941 301.511z" />
|
||||
<glyph unicode="" glyph-name="glasses" d="M639.895-54.71v256.029h298.701v-256.029h-298.701zM85.165-54.71v256.029h298.701v-256.029h-298.701zM694.898 711.159l-139.962-131.514 58.418-62.215 80.478 75.614 207.17-306.381h-261.107c-47.134 0-85.344-38.209-85.344-85.344v0h-85.344c0 47.134-38.209 85.344-85.344 85.344h-261.065l207.128 306.381 80.478-75.614 58.418 62.215-139.92 131.514-328.485-424.496-0.478-341.253c-0.066-47.134 38.089-85.396 85.224-85.462 0.040 0 0.080 0 0.12 0h298.582c47.134 0 85.344 38.209 85.344 85.344v170.686h85.344v-170.686c0-47.134 38.209-85.344 85.344-85.344h298.701c47.134 0 85.344 38.209 85.344 85.344v341.373l-329.040 424.496z" />
|
||||
<glyph unicode="" glyph-name="sitemap" d="M651.636-87.92v372.27h279.273v-372.27h-279.273zM93.091-87.92v372.27h279.273v-372.27h-279.273zM842.938 377.441v372.457h-655.36v-372.457h-141.033c-25.706 0-46.545-20.839-46.545-46.545v-465.362c0-25.706 20.839-46.545 46.545-46.545h372.364c25.706 0 46.545 20.839 46.545 46.545v465.362c0 25.706-20.839 46.545-46.545 46.545h-138.24v279.366h469.178v-279.366h-144.757c-25.706 0-46.545-20.839-46.545-46.545v-465.362c0-25.706 20.839-46.545 46.545-46.545h372.364c25.706 0 46.545 20.839 46.545 46.545v465.362c0 25.706-20.839 46.545-46.545 46.545h-134.516z" />
|
||||
<glyph unicode="" glyph-name="plus-sign" d="M102.4 694.044v-819.199h819.199v819.199h-819.199zM106.456 796.443h811.089c58.794 0 106.455-50.472 106.455-112.734v-798.532c0-62.26-47.661-112.734-106.455-112.734h-811.089c-58.794 0-106.455 50.472-106.455 112.734v798.532c0 62.26 47.661 112.734 106.455 112.734zM460.801 540.444h102.4v-511.999h-102.4v511.999zM768 335.643v-102.4h-511.999v102.4h511.999z" />
|
||||
@@ -58,6 +55,7 @@
|
||||
<glyph unicode="" glyph-name="minus" d="M810.665 327.111h-597.329c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h597.329c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
|
||||
<glyph unicode="" glyph-name="exchange" d="M473.45 167.61h301.759c16.114 0 29.172 13.061 29.172 29.172s-13.061 29.172-29.172 29.172v0h-543.89c-4.265 0-8.195-2.321-10.249-6.061-3.113-5.662-1.050-12.774 4.613-15.887v0l264.382-145.418c2.913-1.602 6.373-1.89 9.509-0.787 6.095 2.138 9.306 8.813 7.165 14.908v0l-33.287 94.898zM550.55 401.278h-301.759c-16.114 0-29.172-13.061-29.172-29.172v0 0c0-16.114 13.061-29.172 29.172-29.172v0h543.89c4.265 0 8.195 2.321 10.249 6.061 3.113 5.662 1.050 12.774-4.613 15.887l-264.382 145.418c-2.913 1.602-6.373 1.89-9.509 0.787-6.095-2.138-9.306-8.813-7.165-14.908v0l33.287-94.898z" />
|
||||
<glyph unicode="" glyph-name="search" horiz-adv-x="951" d="M636.406 316.639c0 124.255-101.113 225.368-225.368 225.368s-225.368-101.113-225.368-225.368 101.113-225.368 225.368-225.368 225.368 101.113 225.368 225.368zM893.969-101.901c0-35.214-29.177-64.391-64.391-64.391-17.105 0-33.704 7.042-45.275 19.116l-172.547 172.045c-58.857-40.748-129.285-62.379-200.718-62.379-195.688 0-354.15 158.462-354.15 354.15s158.462 354.15 354.15 354.15 354.15-158.462 354.15-354.15c0-71.433-21.631-141.861-62.379-200.718l172.547-172.547c11.571-11.571 18.613-28.171 18.613-45.275z" />
|
||||
<glyph unicode="" glyph-name="text" d="M847.856 697.805l59.939-224.765-49.603-13.434c-23.25 44.952-47.022 89.907-74.407 112.64-27.385 22.218-59.421 22.218-90.939 22.218h-129.176v-542.539c0-25.836 0-51.669 17.050-64.586 17.568-12.919 51.669-12.919 86.288-12.919v-51.669h-310.021v51.669c34.62 0 68.723 0 86.288 12.919 17.050 12.919 17.050 38.753 17.050 64.586v542.539h-129.176c-31.519 0-63.554 0-90.939-22.218-27.385-22.733-51.152-67.689-74.407-112.64l-49.603 13.434 59.939 224.765h671.713z" />
|
||||
<glyph unicode="" glyph-name="envelope-o" d="M950.857-26.414v438.857c-12-13.714-25.143-26.286-39.429-37.714-81.714-62.857-164-126.857-243.429-193.143-42.857-36-96-80-155.429-80h-1.143c-59.429 0-112.571 44-155.429 80-79.429 66.286-161.714 130.286-243.429 193.143-14.286 11.429-27.429 24-39.429 37.714v-438.857c0-9.714 8.571-18.286 18.286-18.286h841.142c9.714 0 18.286 8.571 18.286 18.286zM950.857 574.158c0 14.286 3.429 39.429-18.286 39.429h-841.142c-9.714 0-18.286-8.571-18.286-18.286 0-65.143 32.571-121.714 84-162.286 76.571-60 153.143-120.571 229.143-181.143 30.286-24.571 85.143-77.143 125.143-77.143h1.143c40 0 94.857 52.571 125.143 77.143 76 60.571 152.571 121.143 229.143 181.143 37.143 29.143 84 92.571 84 141.143zM1024 595.301v-621.713c0-50.286-41.143-91.429-91.429-91.429h-841.142c-50.286 0-91.429 41.143-91.429 91.429v621.713c0 50.286 41.143 91.429 91.429 91.429h841.142c50.286 0 91.429-41.143 91.429-91.429z" />
|
||||
<glyph unicode="" glyph-name="up-circle" d="M557.51 383.579l108.814-35.010c13.58-4.369 28.464-0.748 38.518 9.371 14.763 14.854 14.687 38.87-0.171 53.635v0l-138.961 138.075c-29.679 29.491-77.633 29.38-107.179-0.246v0l-137.389-137.787c-10.054-10.084-13.614-24.95-9.216-38.492 6.47-19.922 27.862-30.827 47.782-24.358v0l106.774 34.672v-318.972c0-25.135 20.374-45.51 45.51-45.51v0c25.135 0 45.51 20.374 45.51 45.51v0 319.106zM512 739.556v0c251.351 0 455.112-203.76 455.112-455.112v0c0-251.351-203.76-455.112-455.112-455.112s-455.112 203.76-455.112 455.112v0 0c0 251.351 203.76 455.112 455.112 455.112v0z" />
|
||||
<glyph unicode="" glyph-name="right-circle" d="M611.135 238.934l-35.010-108.814c-4.369-13.58-0.748-28.464 9.371-38.518 14.854-14.763 38.87-14.687 53.635 0.171v0l138.075 138.961c29.491 29.679 29.38 77.633-0.246 107.179v0l-137.787 137.389c-10.084 10.054-24.95 13.614-38.492 9.216-19.922-6.47-30.827-27.862-24.358-47.782v0l34.672-106.774h-318.972c-25.135 0-45.51-20.374-45.51-45.51v0c0-25.135 20.374-45.51 45.51-45.51v0h319.106zM967.112 284.444v0c0-251.351-203.76-455.112-455.112-455.112v0c-251.351 0-455.112 203.76-455.112 455.112s203.76 455.112 455.112 455.112v0 0c251.351 0 455.112-203.76 455.112-455.112v0z" />
|
||||
@@ -103,12 +101,14 @@
|
||||
<glyph unicode="" glyph-name="file-pdf" d="M805.344 215.572c-12.132 11.952-39.034 18.28-79.976 18.82-27.714 0.306-61.068-2.136-96.152-7.048-15.71 9.064-31.904 18.928-44.612 30.808-34.188 31.926-62.728 76.242-80.512 124.972 1.16 4.552 2.146 8.552 3.064 12.632 0 0 19.258 109.386 14.162 146.37-0.704 5.072-1.134 6.544-2.496 10.486l-1.672 4.296c-5.24 12.082-15.51 24.884-31.612 24.184l-9.704 0.306c-17.958 0-32.59-9.184-36.432-22.91-11.678-43.052 0.372-107.46 22.204-190.878l-5.59-13.588c-15.634-38.112-35.226-76.498-52.514-110.362l-2.248-4.404c-18.186-35.592-34.69-65.802-49.65-91.398l-15.446-8.168c-1.124-0.594-27.594-14.594-33.802-18.35-52.672-31.448-87.576-67.148-93.368-95.48-1.842-9.040-0.472-20.61 8.902-25.966l14.938-7.518c6.482-3.246 13.314-4.89 20.314-4.89 37.516 0 81.068 46.73 141.064 151.436 69.272 22.552 148.136 41.296 217.256 51.636 52.674-29.66 117.46-50.262 158.348-50.262 7.26 0 13.522 0.694 18.606 2.040 7.842 2.076 14.452 6.55 18.482 12.616 7.934 11.94 9.542 28.384 7.388 45.224-0.64 4.998-4.632 11.176-8.95 15.396zM245.018 15.956c6.842 18.704 33.92 55.684 73.96 88.494 2.518 2.040 8.718 7.85 14.394 13.246-41.87-66.776-69.91-93.392-88.356-101.74zM482.164 562.056c12.058 0 18.92-30.394 19.488-58.892s-6.096-48.498-14.362-63.296c-6.846 21.91-10.156 56.444-10.156 79.026 0 0-0.504 43.162 5.032 43.162v0zM411.424 172.894c8.4 15.036 17.14 30.894 26.072 47.714 21.77 41.17 35.518 73.384 45.758 99.864 20.364-37.052 45.728-68.552 75.542-93.788 3.72-3.148 7.662-6.312 11.8-9.466-60.632-11.996-113.034-26.586-159.172-44.322v0zM793.69 176.308c-3.69-2.31-14.268-3.644-21.074-3.644-21.962 0-49.13 10.040-87.224 26.37 14.638 1.082 28.056 1.634 40.090 1.634 22.028 0 28.552 0.096 50.088-5.398s21.812-16.652 18.118-18.962v0zM872.716 535.932c-19.742 26.926-47.266 58.4-77.492 88.626s-61.7 57.746-88.626 77.492c-45.844 33.618-68.082 37.506-80.822 37.506h-440.888c-39.21 0-71.112-31.9-71.112-71.112v-768c0-39.21 31.898-71.112 71.112-71.112h654.222c39.21 0 71.112 31.9 71.112 71.112v554.666c0 12.74-3.886 34.978-37.506 80.822v0zM755 584.332c27.288-27.288 48.712-51.91 64.516-72.332h-136.848v136.84c20.428-15.804 45.048-37.224 72.332-64.508v0zM853.334-99.556c0-7.708-6.514-14.222-14.222-14.222h-654.222c-7.708 0-14.222 6.514-14.222 14.222v768c0 7.708 6.514 14.222 14.222 14.222 0 0 440.85 0.002 440.888 0v-199.112c0-15.708 12.732-28.444 28.444-28.444h199.112v-554.666z" />
|
||||
<glyph unicode="" glyph-name="file-word" d="M625.58 316.538h39.298l-45.346-201.048-58.956 282.674h-94.712l-68.544-282.674-51.392 282.674h-99.016l100.528-455.004h96.746l67.818 269.076 60.672-269.076h89.188l115.224 455.004h-151.508v-81.628zM872.716 535.93c-19.742 26.928-47.268 58.402-77.49 88.626s-61.702 57.748-88.626 77.49c-45.846 33.616-68.082 37.506-80.82 37.506h-440.888c-39.21 0-71.112-31.9-71.112-71.112v-768c0-39.21 31.898-71.112 71.112-71.112h654.222c39.21 0 71.112 31.9 71.112 71.112v554.666c0 12.738-3.888 34.98-37.506 80.82v0zM755 584.332c27.288-27.288 48.712-51.91 64.518-72.332h-136.848v136.84c20.43-15.806 45.048-37.226 72.332-64.506v0zM853.334-99.556c0-7.708-6.514-14.222-14.222-14.222h-654.222c-7.708 0-14.222 6.514-14.222 14.222v768c0 7.708 6.514 14.222 14.222 14.222 0 0 440.852 0.002 440.888 0v-199.112c0-15.708 12.734-28.444 28.444-28.444h199.112v-554.666z" />
|
||||
<glyph unicode="" glyph-name="file-excel" d="M717.358 398.222h-120.26l-85.096-125.362-85.104 125.362h-120.258l144.144-215.524-162.642-239.588h223.856v81.4h-44.584l44.584 66.662 99.018-148.062h124.84l-162.646 239.588 144.146 215.524zM872.716 535.932c-19.742 26.926-47.266 58.4-77.492 88.626s-61.7 57.746-88.626 77.492c-45.844 33.618-68.082 37.506-80.822 37.506h-440.888c-39.21 0-71.112-31.9-71.112-71.112v-768c0-39.21 31.898-71.112 71.112-71.112h654.222c39.21 0 71.112 31.9 71.112 71.112v554.666c0 12.74-3.886 34.978-37.506 80.822v0zM755 584.332c27.288-27.288 48.712-51.91 64.516-72.332h-136.848v136.84c20.428-15.804 45.048-37.224 72.332-64.508v0zM853.334-99.556c0-7.708-6.514-14.222-14.222-14.222h-654.222c-7.708 0-14.222 6.514-14.222 14.222v768c0 7.708 6.514 14.222 14.222 14.222 0 0 440.85 0.002 440.888 0v-199.112c0-15.708 12.732-28.444 28.444-28.444h199.112v-554.666z" />
|
||||
<glyph unicode="" glyph-name="code" d="M632.794 70.731l213.713 213.713-213.713 213.713 65.043 65.043 278.756-278.756-278.756-278.756-65.043 65.043zM391.206 70.731l-213.713 213.713 213.713 213.713-65.043 65.043-278.756-278.756 278.756-278.756 65.043 65.043z" />
|
||||
<glyph unicode="" glyph-name="spinner-indicator" d="M512 796.444c-278.748 0-505.458-222.762-511.848-499.974 5.92 241.864 189.832 435.974 415.848 435.974 229.75 0 416-200.576 416-448 0-53.020 42.98-96 96-96s96 42.98 96 96c0 282.77-229.23 512-512 512zM512-227.556c278.748 0 505.458 222.762 511.848 499.974-5.92-241.864-189.832-435.974-415.848-435.974-229.75 0-416 200.576-416 448 0 53.020-42.98 96-96 96s-96-42.98-96-96c0-282.77 229.23-512 512-512z" />
|
||||
<glyph unicode="" glyph-name="caret-down" d="M821.728 419.95c0-10.284-4.235-19.964-11.494-27.223l-271.013-271.013c-7.26-7.26-16.939-11.494-27.223-11.494s-19.964 4.235-27.223 11.494l-271.013 271.013c-7.26 7.26-11.494 16.939-11.494 27.223 0 21.172 17.543 38.715 38.715 38.715h542.025c21.172 0 38.715-17.543 38.715-38.715z" />
|
||||
<glyph unicode="" glyph-name="caret-up" d="M821.728 148.938c0-21.172-17.543-38.715-38.715-38.715h-542.026c-21.172 0-38.715 17.543-38.715 38.715 0 10.283 4.235 19.964 11.494 27.223l271.013 271.013c7.26 7.26 16.939 11.494 27.223 11.494s19.964-4.235 27.223-11.494l271.013-271.013c7.26-7.26 11.494-16.939 11.494-27.223z" />
|
||||
<glyph unicode="" glyph-name="caret-left" d="M704 583.111v-597.333c0-23.334-19.333-42.666-42.666-42.666-11.334 0-22.002 4.666-30 12.666l-298.667 298.667c-7.998 7.998-12.666 18.666-12.666 30s4.666 22.002 12.666 30l298.667 298.667c7.998 7.998 18.666 12.666 30 12.666 23.334 0 42.666-19.333 42.666-42.666z" />
|
||||
<glyph unicode="" glyph-name="caret-right" d="M704 284.444c0-11.334-4.666-22.002-12.666-30l-298.667-298.667c-7.998-7.998-18.666-12.666-30-12.666-23.334 0-42.666 19.333-42.666 42.666v597.333c0 23.334 19.333 42.666 42.666 42.666 11.334 0 22.002-4.666 30-12.666l298.667-298.667c7.998-7.998 12.666-18.666 12.666-30z" />
|
||||
<glyph unicode="" glyph-name="sort" d="M822.304 168.081c0-10.301-4.24-20.003-11.513-27.275l-271.519-271.519c-7.27-7.27-16.973-11.513-27.275-11.513s-20.003 4.24-27.275 11.513l-271.519 271.519c-7.27 7.27-11.513 16.973-11.513 27.275 0 21.214 17.573 38.785 38.785 38.785h543.036c21.214 0 38.785-17.573 38.785-38.785zM822.304 400.807c0-21.214-17.573-38.785-38.785-38.785h-543.036c-21.214 0-38.785 17.573-38.785 38.785 0 10.301 4.24 20.003 11.513 27.275l271.519 271.519c7.27 7.27 16.973 11.513 27.275 11.513s20.003-4.24 27.275-11.513l271.519-271.519c7.27-7.27 11.513-16.973 11.513-27.275z" />
|
||||
<glyph unicode="" glyph-name="sort-down" d="M821.724 167.504c0-10.281-4.235-19.964-11.493-27.222l-271.013-271.013c-7.258-7.258-16.939-11.493-27.222-11.493s-19.964 4.235-27.222 11.493l-271.013 271.013c-7.258 7.258-11.493 16.939-11.493 27.222 0 21.171 17.545 38.713 38.713 38.713h542.021c21.171 0 38.713-17.545 38.713-38.713z" />
|
||||
<glyph unicode="" glyph-name="sort-up" d="M821.728 404.932c0-21.173-17.543-38.715-38.715-38.715h-542.026c-21.173 0-38.715 17.543-38.715 38.715 0 10.284 4.237 19.966 11.492 27.221l271.013 271.013c7.263 7.263 16.937 11.492 27.221 11.492s19.966-4.237 27.221-11.492l271.013-271.013c7.263-7.263 11.492-16.937 11.492-27.221z" />
|
||||
<glyph unicode="" glyph-name="caret-down2" d="M821.728 419.95c0-10.284-4.235-19.964-11.494-27.223l-271.013-271.013c-7.26-7.26-16.939-11.494-27.223-11.494s-19.964 4.235-27.223 11.494l-271.013 271.013c-7.26 7.26-11.494 16.939-11.494 27.223 0 21.172 17.543 38.715 38.715 38.715h542.025c21.172 0 38.715-17.543 38.715-38.715z" />
|
||||
<glyph unicode="" glyph-name="caret-up2" d="M821.728 148.938c0-21.172-17.543-38.715-38.715-38.715h-542.026c-21.172 0-38.715 17.543-38.715 38.715 0 10.283 4.235 19.964 11.494 27.223l271.013 271.013c7.26 7.26 16.939 11.494 27.223 11.494s19.964-4.235 27.223-11.494l271.013-271.013c7.26-7.26 11.494-16.939 11.494-27.223z" />
|
||||
<glyph unicode="" glyph-name="caret-left2" d="M704 583.111v-597.333c0-23.334-19.333-42.666-42.666-42.666-11.334 0-22.002 4.666-30 12.666l-298.667 298.667c-7.998 7.998-12.666 18.666-12.666 30s4.666 22.002 12.666 30l298.667 298.667c7.998 7.998 18.666 12.666 30 12.666 23.334 0 42.666-19.333 42.666-42.666z" />
|
||||
<glyph unicode="" glyph-name="caret-right2" d="M704 284.444c0-11.334-4.666-22.002-12.666-30l-298.667-298.667c-7.998-7.998-18.666-12.666-30-12.666-23.334 0-42.666 19.333-42.666 42.666v597.333c0 23.334 19.333 42.666 42.666 42.666 11.334 0 22.002-4.666 30-12.666l298.667-298.667c7.998-7.998 12.666-18.666 12.666-30z" />
|
||||
<glyph unicode="" glyph-name="sort2" d="M822.304 168.081c0-10.301-4.24-20.003-11.513-27.275l-271.519-271.519c-7.27-7.27-16.973-11.513-27.275-11.513s-20.003 4.24-27.275 11.513l-271.519 271.519c-7.27 7.27-11.513 16.973-11.513 27.275 0 21.214 17.573 38.785 38.785 38.785h543.036c21.214 0 38.785-17.573 38.785-38.785zM822.304 400.807c0-21.214-17.573-38.785-38.785-38.785h-543.036c-21.214 0-38.785 17.573-38.785 38.785 0 10.301 4.24 20.003 11.513 27.275l271.519 271.519c7.27 7.27 16.973 11.513 27.275 11.513s20.003-4.24 27.275-11.513l271.519-271.519c7.27-7.27 11.513-16.973 11.513-27.275z" />
|
||||
<glyph unicode="" glyph-name="sort-down2" d="M821.724 167.504c0-10.281-4.235-19.964-11.493-27.222l-271.013-271.013c-7.258-7.258-16.939-11.493-27.222-11.493s-19.964 4.235-27.222 11.493l-271.013 271.013c-7.258 7.258-11.493 16.939-11.493 27.222 0 21.171 17.545 38.713 38.713 38.713h542.021c21.171 0 38.713-17.545 38.713-38.713z" />
|
||||
<glyph unicode="" glyph-name="sort-up2" d="M821.728 404.932c0-21.173-17.543-38.715-38.715-38.715h-542.026c-21.173 0-38.715 17.543-38.715 38.715 0 10.284 4.237 19.966 11.492 27.221l271.013 271.013c7.263 7.263 16.937 11.492 27.221 11.492s19.966-4.237 27.221-11.492l271.013-271.013c7.263-7.263 11.492-16.937 11.492-27.221z" />
|
||||
<glyph unicode="" glyph-name="file-code" d="M867.555 546.541c18.792-18.792 34.538-56.381 34.538-83.303v-585.144c0-26.92-21.841-48.76-48.76-48.76h-682.667c-26.92 0-48.76 21.841-48.76 48.76v812.7c0 26.92 21.841 48.76 48.76 48.76h455.111c26.92 0 64.507-15.746 83.303-34.538zM642.030 670.478v-190.983h190.983c-3.048 8.633-7.619 17.272-11.176 20.824l-158.983 158.983c-3.557 3.557-12.19 8.127-20.824 11.176zM837.077-105.651v520.128h-211.303c-26.92 0-48.76 21.841-48.76 48.76v211.303h-390.096v-780.192h650.161zM365.713 349.461c5.589 7.112 15.746 8.633 22.856 3.048l25.905-19.303c7.112-5.589 8.633-15.746 3.048-22.856l-92.444-123.43 92.444-123.43c5.589-7.112 4.063-17.272-3.048-22.856l-25.905-19.303c-7.112-5.589-17.272-4.063-22.856 3.048l-114.792 152.887c-4.063 5.589-4.063 13.715 0 19.303zM773.077 196.572c4.063-5.589 4.063-13.715 0-19.303l-114.792-152.887c-5.589-7.112-15.746-8.633-22.856-3.048l-25.905 19.303c-7.112 5.589-8.633 15.746-3.048 22.856l92.444 123.43-92.444 123.43c-5.589 7.112-4.063 17.272 3.048 22.856l25.905 19.303c7.112 5.589 17.272 4.063 22.856-3.048zM458.156-37.588c-9.144 1.525-14.728 10.159-13.208 18.792l70.095 422.096c1.525 9.144 10.159 14.728 18.792 13.208l32-5.080c9.144-1.525 14.728-10.159 13.208-18.792l-70.095-422.096c-1.525-9.144-10.159-14.728-18.792-13.208z" />
|
||||
</font></defs></svg>
|
||||
|
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 63 KiB |
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user