mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
e46135be0a
- Turn sake into a symfony/console app - Avoid using HTTPRequest for CLI interaction - Implement abstract hybrid execution path
37 lines
1.3 KiB
Scheme
37 lines
1.3 KiB
Scheme
$Header.RAW
|
|
$Info.RAW
|
|
|
|
<div class="task">
|
|
<div class="task__panel">
|
|
<% if $Tasks.Count > 0 %>
|
|
<div class="task__list">
|
|
<% loop $Tasks %>
|
|
<div class="task__item">
|
|
<div>
|
|
<h3 class="task__title">$Title</h3>
|
|
<div class="task__description">
|
|
$Description
|
|
<% if $Help %>
|
|
<details class="task__help">
|
|
<summary>Display additional information</summary>
|
|
$Help
|
|
</details>
|
|
<% end_if %>
|
|
</div>
|
|
<% if $Parameters %>
|
|
Parameters:
|
|
<% include SilverStripe/Dev/Parameters %>
|
|
<% end_if %>
|
|
</div>
|
|
<div>
|
|
<a href="{$TaskLink.ATT}" class="task__button">Run task</a>
|
|
</div>
|
|
</div>
|
|
<% end_loop %>
|
|
</div>
|
|
<% end_if %>
|
|
</div>
|
|
</div>
|
|
|
|
$Footer.RAW
|