2018-04-21 20:29:54 -04:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block styles %}
|
|
|
|
{{ super() }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block scripts %}
|
|
|
|
{{ super() }}
|
|
|
|
<script type="text/javascript">
|
|
|
|
$('a[data-toggle="tooltip"]').tooltip({
|
|
|
|
animated: 'fade',
|
|
|
|
placement: 'bottom',
|
|
|
|
html: true
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block page_content %}
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
{% if inv_topics != [] %}
|
2018-04-22 07:59:44 -04:00
|
|
|
{% for support in inv_topics %}
|
2018-04-21 20:29:54 -04:00
|
|
|
<div class="col-md-12">
|
|
|
|
<div class="panel panel-info" id="deployments">
|
2018-04-22 07:59:44 -04:00
|
|
|
<div class="panel-heading">{{ support.hashtag }}</div>
|
2018-04-21 20:29:54 -04:00
|
|
|
<div class="panel-body"><p>
|
2018-04-22 07:59:44 -04:00
|
|
|
<div class="panel-group" id="support{{ support.pid }}" role="tablist" aria-multiselectable="true">
|
2018-04-22 18:00:05 -04:00
|
|
|
{% include "panel/support_item.html" %}
|
2018-04-21 20:29:54 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-04-22 07:59:44 -04:00
|
|
|
{% endfor %}
|
|
|
|
|
2018-04-21 20:29:54 -04:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|