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
- 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
- Wherever the user adds this:
- 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
- Wherever the user adds this:
- 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
- Wherever the user adds this:
- 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
- Wherever the user adds this:
- 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
- Wherever the user adds this:
- 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
- Wherever the user adds this: