mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
43 lines
1.3 KiB
Plaintext
43 lines
1.3 KiB
Plaintext
<div id="<%= dialogId %>" class="ol-panel ol-dialog file-import-export hide" oncontextmenu="return false;">
|
|
<div class="ol-dialog-header">
|
|
<h3><%= title %></h3>
|
|
</div>
|
|
|
|
<div class="ol-dialog-content">
|
|
|
|
<div class="import-form" data-on-error="hide">
|
|
<p><%= textContent %></p>
|
|
|
|
<% if (showFilenameInput) { %>
|
|
<div class="export-filename-container">
|
|
<label>Filename:</label>
|
|
<input id="export-filename">
|
|
<img src="resources/theme/images/icons/keyboard-solid.svg">
|
|
</div>
|
|
<% } %>
|
|
|
|
<table class="categories-coalitions">
|
|
<thead>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="import-errors" data-on-error="show">
|
|
|
|
<p>Data could not be imported because:</p>
|
|
|
|
<ul class="import-error-reasons"></ul>
|
|
|
|
<div>Please correct the error(s) and run the import again.</div>
|
|
|
|
</div>
|
|
|
|
<div class="ol-dialog-footer ol-group">
|
|
<button class="start-transfer" data-on-error="hide"><%= submitButtonText %></button>
|
|
<button data-on-click="closeDialog">Close</button>
|
|
</div>
|
|
|
|
</div>
|
|
</div> |