Files
rustdesk-api-server/api/templates/msg.html
2025-01-25 16:46:21 +00:00

13 lines
356 B
HTML

{% extends "base.html" %}
{% load my_filters %}
{% block title %}{{title}}{% endblock %}
{% block legend_name %}{{ "信息" | translate }}{% endblock %}
{% block content %}
<div style="padding: 20px; background-color: #F2F2F2;">
<div class="layui-row layui-col-space15">
{% autoescape off %}
{{msg}}
{% endautoescape %}
</div></div>
{% endblock %}