25 lines
949 B
HTML
25 lines
949 B
HTML
<article class="modal-card">
|
|
<header>
|
|
<h3>[{{ row.sig_num }}] {{ row.signal_abbreviation }}</h3>
|
|
<button class="outline" _="on click call document.getElementById('modal').close() then put '' into #modal">닫기</button>
|
|
</header>
|
|
<section class="content">
|
|
<p>
|
|
<strong>제작사</strong>: {{ row.manufacturer or '—' }}
|
|
{% if row.classification %} · <strong>분류</strong>: {{ row.classification }}{% endif %}
|
|
{% if row.alias_name %} · <strong>별칭</strong>: {{ row.alias_name }}{% endif %}
|
|
</p>
|
|
<hr>
|
|
<h5>설명</h5>
|
|
<p class="prewrap">{{ row.signal_description or '—' }}</p>
|
|
<h5>상태값</h5>
|
|
<p class="prewrap">{{ row.status_value or '—' }}</p>
|
|
<h5>원본 데이터</h5>
|
|
<p class="prewrap">{{ row.original_data or '—' }}</p>
|
|
<h5>생성/수정</h5>
|
|
<p class="prewrap">{{ row.created_at or '—' }} / {{ row.updated_at or '—' }}</p>
|
|
</section>
|
|
</article>
|
|
|
|
|