# css-javascript-toolbox/8.0.2/views/backups/manager/tmpl/list.html.tmpl

CSS &amp; JavaScript Toolbox, version 8.0.2. 12 lines.

- Page: https://pluginprobe.com/plugins/css-javascript-toolbox/8.0.2/code/views/backups/manager/tmpl/list.html.tmpl
- Raw: https://pluginprobe.com/plugins/css-javascript-toolbox/8.0.2/raw/views/backups/manager/tmpl/list.html.tmpl
- Modified: 2013-03-17T20:09:52+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/css-javascript-toolbox/8.0.2/code/views/backups/manager/tmpl/list.html.tmpl#L10-L20`.

```
				<div id="backups">
					<p id="no-backups"<?php if (!empty($this->backups)) : ?> style="display:none"<?php endif; ?>>
						<?php echo cssJSToolbox::getText('There is no backups available! You can start creating new backups from the form above.') ?>
					</p>
					<ul id="backups-list">
<?php
						foreach($this->backups as $index => $this->currentBackup) {
							echo $this->getTemplate('single-backup', array('rowIndex' => $index));
						}
?>
					</ul>
				</div>
```
