12345678910111213141516171819202122232425262728293031 |
- {% extends "base.html.tera" %}
- {% block content %}
- <div class="container">
- <table>
- <thead>
- {}
- </thead>
- </table>
- </div>
- <script lang='js'>
- function get_vid(type_id) {
- axios({
- method:'get',
- url: `/shitpost/${type_id}`
- })
- .then((response) => {
- // handle success
- window.open(response.data.url, "_blank").focus();
- })
- .catch((error) => {
- // handle error
- console.log(error);
- })
- }
- </script>
- {% endblock content %}
|