36 lines
1.0 KiB
HTML
36 lines
1.0 KiB
HTML
<!-- Navigation -->
|
|
{% extends "base.html" %}
|
|
{% block title %}Data Train & Tes{% endblock %}
|
|
<!-- Page Content -->
|
|
{% block content %}
|
|
<div class="container">
|
|
{% include "menu_dataset.html" %}
|
|
|
|
{% if msg %}
|
|
<div class="card card-body mt-4" style="margin-bottom: 10px;">
|
|
<h3>Dataset Training</h3>
|
|
<div class="table caption-top table-striped table-bordered table-responsive-md" cellspacing="0" width="100%"
|
|
style="height: 400px; font-size: 18px; overflow-y: auto; overflow-x: auto;">
|
|
{{ train|safe }}
|
|
</div>
|
|
</div>
|
|
<br>
|
|
<div class="card card-body mt-4" style="margin-bottom: 10px;">
|
|
<h3>Dataset Testing</h3>
|
|
<div class="table caption-top table-striped table-bordered table-responsive-md" cellspacing="0" width="100%"
|
|
style="height: 400px; font-size: 18px; overflow-y: auto; overflow-x: auto;">
|
|
{{ test|safe }}
|
|
</div>
|
|
</div>
|
|
|
|
{% else %}
|
|
|
|
<div class="alert alert-warning" role="alert">
|
|
Dataset Kosong!!
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
<!-- /.container -->
|
|
{% endblock %} |