brackets-git
Version:
Integration of Git into Brackets
21 lines (20 loc) • 1.05 kB
HTML
<table class="git-edited-list bottom-panel-table table table-striped table-condensed row-highlight">
<tbody>
{{#files}}
<tr class="modified-file" x-file="{{file}}" x-status="{{status}}">
<td class="checkbox-column"><input type="checkbox" class="check-one" {{#staged}}checked="true"{{/staged}} /></td>
<td class="icons-column">
{{#allowDiff}}<button class="btn btn-mini btn-git-diff" title="{{Strings.DIFF}}"><i class="octicon octicon-diff"></i></button>{{/allowDiff}}
</td>
<td class="status-column">{{statusText}}</td>
<td>{{display}}</td>
<td>
<div class="btn-group">
{{#allowUndo}} <button class="btn btn-mini btn-git-undo">{{Strings.UNDO_CHANGES}}</button> {{/allowUndo}}
{{#allowDelete}} <button class="btn btn-mini btn-git-delete">{{Strings.DELETE_FILE}}</button> {{/allowDelete}}
</div>
</td>
</tr>
{{/files}}
</tbody>
</table>