Skip to content

Commit

Permalink
chg: [correlation UI] change Direct Correlations position
Browse files Browse the repository at this point in the history
  • Loading branch information
Terrtia committed Mar 11, 2024
1 parent 8000985 commit d526b2f
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions var/www/templates/correlation/show_correlation.html
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,22 @@ <h5>Hidden objects:</h5>
<div class="card mb-3">
<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">
<li class="list-group-item list-group-item-info">Select Correlation</li>
<form action="{{ url_for('correlation.show_correlation') }}" method="post">
Expand Down Expand Up @@ -343,21 +359,6 @@ <h5>Hidden objects:</h5>
</p>
</li>
</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>
Expand Down

0 comments on commit d526b2f

Please sign in to comment.