add icons for Character groups
This commit is contained in:
commit
2d9a41a5fe
3461 changed files with 594457 additions and 0 deletions
|
|
@ -0,0 +1,61 @@
|
|||
{% extends '@Installation/layout.twig' %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<h2>{{ 'Installation_Tables'|translate }}</h2>
|
||||
|
||||
{% if someTablesInstalled is defined %}
|
||||
<div class="warning">{{ 'Installation_TablesWithSameNamesFound'|translate("<span id='linkToggle'>","</span>")|raw }}
|
||||
<img src="plugins/Zeitgeist/images/warning_medium.png"/>
|
||||
</div>
|
||||
<div id="toggle" style="display:none;color:#4F2410;font-size: small;">
|
||||
<em>{{ 'Installation_TablesFound'|translate }}: <br/>
|
||||
{{ tablesInstalled }} </em>
|
||||
</div>
|
||||
{% if showReuseExistingTables is defined %}
|
||||
<p>{{ 'Installation_TablesWarningHelp'|translate }}</p>
|
||||
<p class="nextStep"><a href="{{ linkTo({'action':'reuseTables'}) }}">{{ 'Installation_TablesReuse'|translate }} »</a></p>
|
||||
{% else %}
|
||||
<p class="nextStep"><a href="{{ linkTo({'action':previousPreviousModuleName}) }}">« {{ 'Installation_GoBackAndDefinePrefix'|translate }}</a></p>
|
||||
{% endif %}
|
||||
<p class="nextStep"><a href="{{ linkTo({'deleteTables':1}) }}" id="eraseAllTables">{{ 'Installation_TablesDelete'|translate }} »</a></p>
|
||||
{% endif %}
|
||||
|
||||
{% if existingTablesDeleted is defined %}
|
||||
<div class="success"> {{ 'Installation_TablesDeletedSuccess'|translate }}
|
||||
<img src="plugins/Zeitgeist/images/success_medium.png"/></div>
|
||||
{% endif %}
|
||||
|
||||
{% if tablesCreated is defined %}
|
||||
<div class="success"> {{ 'Installation_TablesCreatedSuccess'|translate }}
|
||||
<img src="plugins/Zeitgeist/images/success_medium.png"/></div>
|
||||
{% endif %}
|
||||
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
var strConfirmEraseTables = "{{ 'Installation_ConfirmDeleteExistingTables'|translate("["~tablesInstalled~"]") }} ";
|
||||
|
||||
// toggle the display of the tables detected during the installation when clicking
|
||||
// on the span "linkToggle"
|
||||
$("#linkToggle")
|
||||
.css("border-bottom", "thin dotted #ff5502")
|
||||
|
||||
.hover(function () {
|
||||
$(this).css({ cursor: "pointer"});
|
||||
},
|
||||
function () {
|
||||
$(this).css({ cursor: "auto"});
|
||||
})
|
||||
.css("border-bottom", "thin dotted #ff5502")
|
||||
.click(function () {
|
||||
$("#toggle").toggle();
|
||||
});
|
||||
|
||||
$("#eraseAllTables").click(function () {
|
||||
if (!confirm(strConfirmEraseTables)) {
|
||||
return false;
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue