{{!
    This file is part of Moodle - http://moodle.org/

    Moodle is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    Moodle is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
}}
{{!
    @template tool_trigger/workflow_steps

    Displays step table in workflow edit form.

    Classes required for JS:
    * none

    Data attributes required for JS:
    * none

    Context variables required for this template:
    * none

    Example context (json):
    {
    }

}}
<table class="table table-sm table-striped">
  <thead>
    <tr>
      <th scope="col">{{# str }} stepname, tool_trigger {{/ str }}</th>
      <th scope="col">{{# str }} steptype, tool_trigger {{/ str }}</th>
      <th scope="col">{{# str }} stepclass, tool_trigger {{/ str }}</th>
      <th scope="col">{{# str }} manage, tool_trigger {{/ str }}</th>
    </tr>
  </thead>
  <tbody>
  {{#rows}}
    <tr class="tool-trigger-step-table-row">
      <th scope="row" class="tool-trigger-step-table-cell">{{name}}</th>
      <td class="tool-trigger-step-table-cell">{{typedesc}}</td>
      <td class="tool-trigger-step-table-cell">{{stepdesc}}</td>
      <td class="tool-trigger-step-table-cell">
        <span class="tool-trigger-initial-hidden tool-trigger-step-moveup" data-steporder="{{steporder}}">{{# pix }} t/up, core, {{# str }} movestepup, tool_trigger {{/ str }} {{/ pix }}</span>
        <span class="tool-trigger-initial-hidden tool-trigger-step-movedown" data-steporder="{{steporder}}">{{# pix }} t/down, core, {{# str }} movestepdown, tool_trigger {{/ str }} {{/ pix }}</span>
        <span class="tool-trigger-initial-hidden tool-trigger-step-edit" data-steporder="{{steporder}}">{{# pix }} t/edit, core, {{# str }} editstep, tool_trigger {{/ str }} {{/ pix }}</span>
        <span class="tool-trigger-initial-hidden tool-trigger-step-delete" data-steporder="{{steporder}}">{{# pix }} t/delete, core, {{# str }} deletestep, tool_trigger {{/ str }} {{/ pix }}</span>
      </td>
    </tr>
  {{/rows}}
  </tbody>
</table>


