Files
core/tmp_msg/tmp_template.html
T

45 lines
1.6 KiB
HTML

<div
class="msg_plate msg_plate_<%msgType%>"
id="msg_<%id%>"
>
<div class="msg_icon">
<%if(src.icon) { %>
<img src="<%encodeURI(src.icon)%>">
<%} else {%>
<img src="/image/default.jpg">
<%}%>
</div>
<div class="msg_body">
<div class="msg_header">
<%if(msgType == 'private') {%>
<span>[</span>
<span style="color:<%src.color%>"><%e(src.name)%>:<%e(src.nation)%></span>
<span style="color:<%dest.color%>"><%e(dest.name)%>:<%e(dest.nation)%></span>
]
<%} else if(msgType == 'national' && src.nation_id == dest.nation_id){%>
[
<span style="color:<%src.color%>"><%e(src.name)%>:<%e(src.nation)%></span>
]
<%} else if(msgType == 'national' || msgType == 'diplomacy'){%>
[
<span style="color:<%src.color%>"><%e(src.name)%>:<%e(src.nation)%></span>
<span style="color:<%dest.color%>"><%e(dest.nation)%></span>
]
<%} else {%>
[
<span style="color:<%src.color%>"><%e(src.name)%>:<%e(src.nation)%></span>
]
<%} %>
<span class="msg_time">&lt;<%e(time)%>&gt;</span>
</div>
<%e(text)%>
<%if(this.option){ console.log('HasOption!!'); %>
<div>
<button class="prompt_yes btn_prompt">수락</button><button class="prompt_no btn_prompt">거절</button>
</div>
<%} %>
</div>
</div>