Licitator 1.0
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.

94 lines
5.2 KiB

5 years ago
  1. {% if financialActors is not empty %}
  2. <ul id="financial-search-result" class="row">
  3. {% for financial in financialActors %}
  4. {% set image = vich_uploader_asset(financial, 'photoFile', 'App\\Entity\\User') %}
  5. {% if image is null %}
  6. {% set image = '/images/user-profile.png' %}
  7. {% endif %}
  8. <li class="col-sm-12 col-md-6 col-lg-3">
  9. <div class="card">
  10. <div class="card-img-header">
  11. {# <img class="card-img-top" src="{{ image }}" alt="{{ financial.nombreCompleto }}"> #}
  12. <div class="card-title">
  13. <h3>{{ financial.companyName }}</h3>
  14. </div>
  15. </div>
  16. <div class="card-body">
  17. {#<p>{{ financial.companyName }}</p>#}
  18. {% if financial.typology is not null and financial.typology is not empty%}
  19. <p>{{ financial.getTypologyList }}</p>
  20. {% endif %}
  21. {% if financial.website is not null and financial.website is not empty%}
  22. <p><a href="{{ financial.website }}" title="{{ financial.companyName }}">{{ financial.website }}</a></p>
  23. {% endif %}
  24. {% if financial.biography is not null and financial.biography is not empty%}
  25. <p>{{ financial.biography }}</p>
  26. {% endif %}
  27. <div class="d-none extra-info">
  28. {% if financial.instruments is not null and financial.instruments is not empty %}
  29. <p>
  30. <strong>{{ "Instruments:" | trans }}</strong>
  31. <br>
  32. {{ financial.instruments }}</p>
  33. {% endif %}
  34. {% if financial.averageAmount is not null and financial.averageAmount is not empty %}
  35. <p>
  36. <strong>{{ "Average investment / amount in $ or EURO:" | trans }}</strong>
  37. <br>
  38. {{ financial.averageAmount }}
  39. </p>
  40. {% endif %}
  41. {% if financial.investmentCriteria is not null and financial.investmentCriteria is not empty %}
  42. <p>
  43. <strong>{{ "Investment criteria:" | trans }}</strong>
  44. <br>
  45. {{ financial.investmentCriteria }}</p>
  46. {% endif %}
  47. {% if financial.prerrequisites is not null and financial.prerrequisites is not empty %}
  48. <p>
  49. <strong>{{ "Most important prerequisites for financing a project:" | trans }}</strong>
  50. <br>
  51. {{ financial.prerrequisites }}</p>
  52. {% endif %}
  53. {% if financial.barriers is not null and financial.barriers is not empty %}
  54. <p>
  55. <strong>{{ "Most important barriers that prevent financing:" | trans }}</strong>
  56. <br>
  57. {{ financial.barriers }}</p>
  58. {% endif %}
  59. {% if financial.minimumInvestment is not null and financial.minimumInvestment is not empty %}
  60. <p>
  61. <strong>{{ "Minimum investment required:" | trans }}</strong>
  62. <br>
  63. {{ financial.minimumInvestment }}</p>
  64. {% endif %}
  65. {% if financial.availableProducts is not null and financial.availableProducts is not empty %}
  66. <p>
  67. <strong>{{ "Currently available financial products:" | trans }}</strong>
  68. <br>
  69. {{ financial.availableProducts }}</p>
  70. {% endif %}
  71. {% if financial.email is not null and financial.email is not empty %}
  72. <p>{{ financial.email }}</p>
  73. {% endif %}
  74. {% if financial.phone is not null and financial.phone is not empty %}
  75. <p>{{ financial.phone }}</p>
  76. {% endif %}
  77. </div>
  78. <button class="btn btn-start btn-lg" data-toggle="modal" data-target="#moreInfoModal">{{ "More info" | trans }}</button>
  79. </div>
  80. </div>
  81. </li>
  82. {% endfor %}
  83. </ul>
  84. {% else %}
  85. <div id="financial-search-result" >
  86. <h3>{{ "There are no financial actors matching your criteria right now" | trans }}</h3>
  87. </div>
  88. {% endif %}