45 lines
2.2 KiB
HTML
45 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="ja">
|
||
<head>
|
||
{% with subtitle = menu.subtitle %}
|
||
{% include '_header.html' %}
|
||
{% endwith %}
|
||
<link href="/static/css/menuStyle.css" rel="stylesheet">
|
||
</head>
|
||
<body>
|
||
<div class="container-fluid text-center background">
|
||
<h1>MeDaCA<br/>機能メニュー</h1>
|
||
<br><br>
|
||
{% if menu.is_available_ult_doctor_menu() %}
|
||
<a href="javascript:void(0);" onclick="transitionTo('/ultmarc/docSearch')" class="btn btn-primary btn-lg btn_width">Ultmarc照会(医師)</a><br><br>
|
||
{% endif %}
|
||
{% if menu.is_available_ult_inst_menu() %}
|
||
<a href="javascript:void(0);" onclick="transitionTo('/ultmarc/instSearch')" class="btn btn-primary btn-lg btn_width">Ultmarc照会(施設)</a><br><br>
|
||
{% endif %}
|
||
{% if menu.is_available_bio_menu() %}
|
||
{% if not menu.is_batch_processing() %}
|
||
<a href="javascript:void(0);" onclick="transitionTo('/bio/BioSearchList')" class="btn btn-primary btn-lg btn_width">生物由来データ参照</a><br><br>
|
||
{% else %}
|
||
<div class="notUseBioMsg">生物由来データ参照は <br> 日次バッチ処理中のため利用出来ません</div>
|
||
{% endif %}
|
||
{% endif %}
|
||
{# TODO 削除予定 {% if menu.is_available_master_maintenance_menu() %}
|
||
{% if menu.is_batch_processing() %}
|
||
<div class="notUseMainteMsg"> マスターメンテメニューは <br> 日次バッチ処理中のため利用出来ません </div>
|
||
{% elif menu.is_backup_processing() %}
|
||
<div class="notUseMainteMsg"> バックアップ取得を開始しました。 <br>日次バッチ更新が終了するまでマスターメンテメニューは利用できません</div>
|
||
{% else %}
|
||
<a href="javascript:void(0);" onclick="transitionTo('/masterMainte/masterMainteMenu')" class="btn btn-primary btn-lg btn_width">マスターメンテメニュー</a><br><br>
|
||
{% endif %}
|
||
{% endif %}
|
||
#}
|
||
|
||
<br><br><a href="javascript:void(0);" onclick="transitionTo('/logout/?reason=do_logout')" class="btn btn-info btn-lg btn_width">Logout</a>
|
||
</div>
|
||
<!-- ローディング -->
|
||
{% with progress_message = ''%}
|
||
{% include '_loading.html' %}
|
||
{% endwith %}
|
||
</body>
|
||
</html>
|