mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 00:28:22 +00:00
chg: [correlation UI] change Direct Correlations position
This commit is contained in:
parent
800098540b
commit
d526b2fd98
1 changed files with 16 additions and 15 deletions
|
@ -204,6 +204,22 @@
|
||||||
<div class="card mb-3">
|
<div class="card mb-3">
|
||||||
<div class="card-body text-center px-0 py-0">
|
<div class="card-body text-center px-0 py-0">
|
||||||
|
|
||||||
|
<ul class="list-group">
|
||||||
|
<li class="list-group-item list-group-item-secondary"><i class="fas fa-project-diagram"></i> Direct Correlations</li>
|
||||||
|
<li class="list-group-item text-left">
|
||||||
|
{% for obj_type in dict_object['nb_correl'] %}
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-8">
|
||||||
|
{{ obj_type }}
|
||||||
|
</div>
|
||||||
|
<div class="col-4">
|
||||||
|
<span class="badge badge-primary">{{ dict_object['nb_correl'][obj_type] }}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
<ul class="list-group">
|
<ul class="list-group">
|
||||||
<li class="list-group-item list-group-item-info">Select Correlation</li>
|
<li class="list-group-item list-group-item-info">Select Correlation</li>
|
||||||
<form action="{{ url_for('correlation.show_correlation') }}" method="post">
|
<form action="{{ url_for('correlation.show_correlation') }}" method="post">
|
||||||
|
@ -343,21 +359,6 @@
|
||||||
</p>
|
</p>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<ul class="list-group">
|
|
||||||
<li class="list-group-item list-group-item-secondary"><i class="fas fa-project-diagram"></i> Direct Correlations</li>
|
|
||||||
<li class="list-group-item text-left">
|
|
||||||
{% for obj_type in dict_object['nb_correl'] %}
|
|
||||||
<div class="row">
|
|
||||||
<div class="col-8">
|
|
||||||
{{ obj_type }}
|
|
||||||
</div>
|
|
||||||
<div class="col-4">
|
|
||||||
<span class="badge badge-primary">{{ dict_object['nb_correl'][obj_type] }}</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{% endfor %}
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue