Message icons added.

This commit is contained in:
Matthias Mees 2012-12-04 02:08:13 +01:00
parent 5360662e2c
commit f3488ff27c

View File

@ -3,14 +3,14 @@
{if $importForm}
{if $die}
<span class="msg_error">FAILURE: Unable to require import module, possible syntax error?</span>
<span class="msg_error"><span class="icon-attention"></span> FAILURE: Unable to require import module, possible syntax error?</span>
{else}
{if $validateData}
<span class="msg_notice">{$CONST.IMPORT_STARTING}</span>
<span class="msg_notice"><span class="icon-info-circle"></span> {$CONST.IMPORT_STARTING}</span>
{if $result != true}
<span class="msg_error">{$CONST.IMPORT_FAILED}: {$result}</span>
<span class="msg_error"><span class="icon-attention"></span> {$CONST.IMPORT_FAILED}: {$result}</span>
{else}
<span class="msg_success">{$CONST.IMPORT_DONE}</span>
<span class="msg_success"><span class="icon-ok-circle"></span> {$CONST.IMPORT_DONE}</span>
{/if}
{else}
<h2>{$CONST.IMPORT_PLEASE_ENTER}</h2>
@ -24,7 +24,7 @@
{/foreach}
</dl>
{if $notes}
<span class="msg_notice">{$CONST.IMPORT_NOTES}: {$notes}</span>
<span class="msg_notice"><span class="icon-info-circle"></span> {$CONST.IMPORT_NOTES}: {$notes}</span>
{/if}
<input type="submit" value="{$CONST.IMPORT_NOW}">
</form>