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.

38 lines
1.8 KiB

5 years ago
  1. {% extends sonata_block.templates.block_base %}
  2. {% block block %}
  3. {% block stepsprogreso %}
  4. <div class="box">
  5. <div class="box-body">
  6. <table class="table table-bordered">
  7. <tbody>
  8. <tr>
  9. {% for key,bussines in bussiness %}
  10. <td style="width:25%">
  11. <div class="progress progress-xs">
  12. <div class="progress-bar progress-bar-yellow" style="width:{% if bussines == app.user.getBussinessStage() %}100{% else %}0{% endif %}%">
  13. </div>
  14. </div>
  15. </td>
  16. {% endfor %}
  17. </tr>
  18. <tr>
  19. {% for key,bussines in bussiness %}
  20. {% if key == 0 %}
  21. {% set bussinessTitle = "Ideation Stage"|trans({}) %}
  22. {% elseif key == 1 %}
  23. {% set bussinessTitle = "Early-Stage"|trans({}) %}
  24. {% elseif key == 2 %}
  25. {% set bussinessTitle = "Growth"|trans({}) %}
  26. {% elseif key == 3 %}
  27. {% set bussinessTitle = "Scale"|trans({}) %}
  28. {% endif%}
  29. <td style="text-align: center">{{ bussinessTitle |trans({}, 'dashboard') }} </td>
  30. {% endfor %}
  31. </tr>
  32. </tbody>
  33. </table>
  34. </div>
  35. </div>
  36. {% endblock %}
  37. {% endblock %}