You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
{% if financialActors is not empty %} <ul id="financial-search-result" class="row"> {% for financial in financialActors %} {% set image = vich_uploader_asset(financial, 'photoFile', 'App\\Entity\\User') %} {% if image is null %} {% set image = '/images/user-profile.png' %} {% endif %} <li class="col-sm-12 col-md-6 col-lg-3"> <div class="card"> <div class="card-img-header"> {# <img class="card-img-top" src="{{ image }}" alt="{{ financial.nombreCompleto }}"> #} <div class="card-title"> <h3>{{ financial.companyName }}</h3> </div> </div> <div class="card-body"> {#<p>{{ financial.companyName }}</p>#}
{% if financial.typology is not null and financial.typology is not empty%} <p>{{ financial.getTypologyList }}</p> {% endif %}
{% if financial.website is not null and financial.website is not empty%} <p><a href="{{ financial.website }}" title="{{ financial.companyName }}">{{ financial.website }}</a></p> {% endif %}
{% if financial.biography is not null and financial.biography is not empty%} <p>{{ financial.biography }}</p> {% endif %} <div class="d-none extra-info">
{% if financial.instruments is not null and financial.instruments is not empty %} <p> <strong>{{ "Instruments:" | trans }}</strong> <br> {{ financial.instruments }}</p> {% endif %}
{% if financial.averageAmount is not null and financial.averageAmount is not empty %} <p> <strong>{{ "Average investment / amount in $ or EURO:" | trans }}</strong> <br> {{ financial.averageAmount }} </p> {% endif %} {% if financial.investmentCriteria is not null and financial.investmentCriteria is not empty %} <p> <strong>{{ "Investment criteria:" | trans }}</strong> <br> {{ financial.investmentCriteria }}</p> {% endif %} {% if financial.prerrequisites is not null and financial.prerrequisites is not empty %} <p> <strong>{{ "Most important prerequisites for financing a project:" | trans }}</strong> <br> {{ financial.prerrequisites }}</p> {% endif %} {% if financial.barriers is not null and financial.barriers is not empty %} <p> <strong>{{ "Most important barriers that prevent financing:" | trans }}</strong> <br> {{ financial.barriers }}</p> {% endif %} {% if financial.minimumInvestment is not null and financial.minimumInvestment is not empty %} <p> <strong>{{ "Minimum investment required:" | trans }}</strong> <br> {{ financial.minimumInvestment }}</p> {% endif %} {% if financial.availableProducts is not null and financial.availableProducts is not empty %} <p> <strong>{{ "Currently available financial products:" | trans }}</strong> <br> {{ financial.availableProducts }}</p> {% endif %} {% if financial.email is not null and financial.email is not empty %} <p>{{ financial.email }}</p> {% endif %} {% if financial.phone is not null and financial.phone is not empty %} <p>{{ financial.phone }}</p> {% endif %}
</div> <button class="btn btn-start btn-lg" data-toggle="modal" data-target="#moreInfoModal">{{ "More info" | trans }}</button> </div> </div> </li> {% endfor %} </ul>{% else %} <div id="financial-search-result" > <h3>{{ "There are no financial actors matching your criteria right now" | trans }}</h3> </div>{% endif %}
|