diff options
author | M <m@lfurio.us> | 2015-11-29 20:03:50 -0500 |
---|---|---|
committer | M <m@lfurio.us> | 2015-11-29 20:03:50 -0500 |
commit | d0ac4b2ef6ac4bb472188a84085ab040e5b2a769 (patch) | |
tree | d7247572d2bfae5853ced84b9a6a3ee99c2cb657 /app/view | |
parent | b4af0b4594a95365f77575eef288a5d318f5a06c (diff) | |
download | scrott-d0ac4b2ef6ac4bb472188a84085ab040e5b2a769.tar.gz scrott-d0ac4b2ef6ac4bb472188a84085ab040e5b2a769.zip |
+ Added sysconf stage modal view
Diffstat (limited to 'app/view')
-rw-r--r-- | app/view/sysconf/stage.modal.view.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/app/view/sysconf/stage.modal.view.php b/app/view/sysconf/stage.modal.view.php new file mode 100644 index 0000000..4eaab43 --- /dev/null +++ b/app/view/sysconf/stage.modal.view.php @@ -0,0 +1,34 @@ +<div id="stageModal" class="modal fade" tabindex="-1" role="dialog"> + <div class="modal-dialog" role="document"> + <div class="modal-content"> + <div class="modal-header"> + + <button type="button" class="close" data-dismiss="modal"> + <span aria-hidden="true">×</span> + </button> + + <h4 class="modal-title">Pad Stages</h4> + + </div> + + <div class="modal-body"> + <p>The issue-tracking aspect of pads is divided up using pad stages. A stage is + representative of the level of completion or high-level status of an issue. For + example, a pad may have an initial stage named "To Do", an intermediate stage named + "In Progress", and another stage "In Review". Stages form a sequence in practice. + When the appropriate amount of work has been done on an issue, it is advanced to the + next stage in the pipeline. This allows other pad members and the issue's owner to + at a glance get an idea of the high-level progress of the issue.</p> + + <p>Once an issue is closed, it is removed from this stage pipeline, but retained in + the pad itself for archival purposes and for generating reports.</p> + </div> + + <div class="modal-footer"> + <button type="button" class="btn btn-primary" data-dismiss="modal"> + Close + </button> + </div> + </div> + </div> +</div> |