Done Edit me
PRACTICAL ™ Documentation provides easy to access check-lists

User Story

As a user of PRACTICAL ™ Documentation, I would like to access Twitter Bootstrap’s Glyph-Icons checkboxes in order to create todo lists, without having to type the HTML in over and over.

Acceptance Criteria

  1. Scenario
    • Wherever the user adds this: { % include checkbox.html % }
    • Then the system outputs this: <span class="glyphicon glyphicon-unchecked" aria-hidden="true"></span>
    • and the user sees
  2. Scenario
    • Wherever the user adds this: { % include checkbox.html checked=true % }
    • Then the system outputs this: <span class="glyphicon glyphicon-check" aria-hidden="true"></span>
    • and the user sees
  3. Scenario
    • Wherever the user adds this: { % include checkbox.html done=true % }
    • Then the system outputs this: <span class="glyphicon glyphicon-check" aria-hidden="true"></span>
    • and the user sees
  4. Scenario
    • Wherever the user adds this: { % include checkbox.html finished=true % }
    • Then the system outputs this: <span class="glyphicon glyphicon-check" aria-hidden="true"></span>
    • and the user sees
  5. Scenario
    • Wherever the user adds this: { % include checkbox.html completed=true % }
    • Then the system outputs this: <span class="glyphicon glyphicon-check" aria-hidden="true"></span>
    • and the user sees
  6. Scenario
    • Wherever the user adds this: { % include checkbox.html complete=true % }
    • Then the system outputs this: <span class="glyphicon glyphicon-check" aria-hidden="true"></span>
    • and the user sees