31 lines
685 B
HTML
31 lines
685 B
HTML
|
|
{% extends "base.html" %} {% block content %}
|
||
|
|
|
||
|
|
<div>
|
||
|
|
<form id="program_list">
|
||
|
|
|
||
|
|
</form>
|
||
|
|
<form id="airing_list_form">
|
||
|
|
<div id="airing_list"></div>
|
||
|
|
</form>
|
||
|
|
<form id="program_auto_form">
|
||
|
|
<div id="episode_list"></div>
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
<!--전체-->
|
||
|
|
<link
|
||
|
|
href="{{ url_for('.static', filename='css/%s.css' % arg['template_name'])
|
||
|
|
}}"
|
||
|
|
type="text/css"
|
||
|
|
rel="stylesheet"
|
||
|
|
/>
|
||
|
|
<script type="text/javascript">
|
||
|
|
const package_name = "inflearn";
|
||
|
|
const inflearn_url = "{{arg['inflearn_url']}}";
|
||
|
|
|
||
|
|
$(document).ready(function () {
|
||
|
|
get_excel_list()
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
<script src="{{ url_for('.static', filename='js/%s.js' % arg['template_name']) }}"></script>
|
||
|
|
{% endblock %}
|