35 lines
762 B
HTML
35 lines
762 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<script>
|
|
function sendquote(id) {
|
|
let space="AAAAi8Ave9c";
|
|
alert("{{ url_for('chatbot.send_quote', space='AAAAi8Ave9c', _external=True) }}");
|
|
}
|
|
</script>
|
|
<div >
|
|
<h3 class="title">Quotes</h3>
|
|
<div >
|
|
{% with messages = get_flashed_messages() %}
|
|
{% if messages %}
|
|
<div class="notification is-danger">
|
|
{{ messages[0] }}
|
|
</div>
|
|
{% endif %}
|
|
{% endwith %}
|
|
<table class="table">
|
|
{% for quote in quotes %}
|
|
<tr>
|
|
<td class=" is-primary" style="text-align: left">
|
|
{{ quote[0] }}
|
|
</td>
|
|
<td class="is-primary"><button class="is-primary button" onclick='sendquote({{ quote[1] }})' type="submit">Send</button></td>
|
|
</tr>
|
|
{% endfor %}
|
|
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|