| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- {**********************************************************************
- * ProxmoxCloudVps product developed. (2017-10-06)
- * *
- *
- * CREATED BY MODULESGARDEN -> http://modulesgarden.com
- * CONTACT -> contact@modulesgarden.com
- *
- *
- * This software is furnished under a license and may be used and copied
- * only in accordance with the terms of such license and with the
- * inclusion of the above copyright notice. This software or any other
- * copies thereof may not be provided or otherwise made available to any
- * other person. No title to and ownership of the software is hereby
- * transferred.
- *
- *
- **********************************************************************}
- {**
- * @author Sławomir Miśkowicz <slawomir@modulesgarden.com>
- *}
- <div class="lu-widget">
- <div class="lu-widget__body">
- {if $rawObject->isShowTitle() && (($rawObject->getRawTitle() || $rawObject->getTitle()) && $rawObject->isViewHeader())}
- <div class="lu-widget__header">
- <div class="lu-widget__top lu-top">
- <div class="lu-top__title">
- {if $rawObject->getIcon()}<i class="{$rawObject->getIcon()}"></i>{/if}
- {if $rawObject->isRawTitle()}{$rawObject->getRawTitle()}{elseif $rawObject->getTitle()}{$MGLANG->T($rawObject->getTitle())}{/if}
- </div>
- <div class="lu-top__toolbar"><a href="#" id="pm-add-disk-button" data-toggle="lu-tooltip" class="lu-btn lu-btn--primary" data-title="{$MGLANG->T('Add New Additional Disk')}">
- <i class="lu-zmdi lu-zmdi-plus"></i>
- <span class="lu-btn__text">{$MGLANG->T('Add New Additional Disk')}</span>
- </a>
- </div>
- </div>
- </div>
- {/if}
- <div class="lu-widget__content lu-p-1x">
- <div class="lu-alert lu-alert--outline lu-alert--icon lu-alert--info lu-alert--bordered lu-m-b-0x lu-alert--dismiss mg-message ">
- <div class="lu-alert__body">
- {$MGLANG->T('additional_disk_add_info')}
- </div>
- </div>
- <div class="lu-widget hidden pm-disk-content-default" >
- <div class="lu-widget__body">
- <div class="lu-widget__header">
- <div class="lu-widget__top lu-top">
- <div class="lu-top__title">
- {$MGLANG->T('Additional Disk')}
- </div>
- <div class="lu-top__toolbar">
- <a href="#"
- class="lu-btn lu-btn--xs lu-btn--default lu-btn--icon lu-btn--link lu-btn--plain pm-delete-disk-button">
- <i class="lu-btn__icon lu-zmdi lu-zmdi-close"></i>
- </a>
- </div>
- </div>
- </div>
- {foreach from=$rawObject->getFields() item=field }
- <div class="lu-widget__content">
- {$field->getHtml()}
- </div>
- {/foreach}
- </div>
- </div>
- </div>
- </div>
- </div>
|