dashboardSetting.html 2.34 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
<!-- dashboard setting modal -->
<div class="modal fade" id="dashboard-setting-modal" tabindex="-1" role="dialog">
    <div class="modal-dialog modal-dialog-centered" role="document">
      <div class="modal-content">
        <div class="modal-header bg-dark10">
            <h5 class="modal-title lang" lang="dashboardSettings"></h5>
            <button type="button" class="close" data-dismiss="modal" aria-label="Close">
              <span aria-hidden="true">&times;</span>
            </button>
        </div>
        <div class="modal-body">
            <table class="w-100" id="dashboardSettingItems">
                <colgroup>
14
                    <col span="1" class="w-250px">
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
                </colgroup>
                <tbody>
                    <tr>
                        <th class="fs-9 p-2 text-secondary lang" lang="newRegistrationTitle"></th>
                        <td class="p-2"><div id="settingNewReport" data-key="newReport" class="toggle ml-auto"><input type="checkbox" name="chk-new"></div></td>
                    </tr>
                    <tr>
                        <th class="fs-9 p-2 text-secondary lang" lang="processWorkTitle"></th>
                        <td class="p-2"><div id="settingContinousWork" data-key="continousWork" class="toggle ml-auto"><input type="checkbox" name="chk-proccess"></div></td>
                    </tr>
                    <tr>
                        <th class="fs-9 p-2 text-secondary lang" lang="workWithWarningsTitle"></th>
                        <td class="p-2"><div id="settingWarningReport" data-key="warningReport" class="toggle ml-auto"><input type="checkbox" name="chk-alert"></div></td>
                    </tr>
                    <tr>
                        <th class="fs-9 p-2 text-secondary lang" lang="makeDashboardAsHome"></th>
                        <td class="p-2"><div id="settingDashboardHome" data-key="dashboardHome" class="toggle ml-auto"><input type="checkbox" name="chk-home"></div></td>
                    </tr>
                </tbody>
            </table>
        </div>
        <div class="modal-footer">
            <button type="button" class="btn btn-primary lang" lang="btnKeep" onclick="DashboardSetting.onClickSave();"></button>
            <button type="button" class="btn btn-tertiary lang" lang="dspCancel" data-dismiss="modal"></button>
        </div>
      </div>
    </div>
42
</div>