인프런 업로드
This commit is contained in:
30
templates/inflearn_excel.html
Executable file
30
templates/inflearn_excel.html
Executable file
@@ -0,0 +1,30 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user