You are here

fiu-ui-preview.html.twig in Fine Image Upload 8.2

<div class="fiu-widget-preview">
  {% if data.imce %}
    <div class="imce-filefield-widget">
      <a class="imce-filefield-link" href="#" onclick="return false;">
        {{ data.imce }}
      </a>
    </div>
  {% endif %}

  <label>{{ 'Add or drag new file'|t }}</label>

  {% if data.filesource %}
    <div class="filefield-sources-list">
      <a href="#" onclick="return false;" class="filefield-source filefield-source-upload">
        {{ 'Upload'|t }}
      </a>
      <a href="#" onclick="return false;" class="filefield-source filefield-source-remote">
        {{ 'Remote URL'|t }}
      </a>
      <a href="#" onclick="return false;" class="filefield-source filefield-source-reference">
        {{ 'Reference existing'|t }}
      </a>
    </div>
  {% endif %}
</div>

File

fiu_ui/templates/fiu-ui-preview.html.twig
View source
  1. <div class="fiu-widget-preview">
  2. {% if data.imce %}
  3. <div class="imce-filefield-widget">
  4. <a class="imce-filefield-link" href="#" onclick="return false;">
  5. {{ data.imce }}
  6. </a>
  7. </div>
  8. {% endif %}
  9. <label>{{ 'Add or drag new file'|t }}</label>
  10. {% if data.filesource %}
  11. <div class="filefield-sources-list">
  12. <a href="#" onclick="return false;" class="filefield-source filefield-source-upload">
  13. {{ 'Upload'|t }}
  14. </a>
  15. <a href="#" onclick="return false;" class="filefield-source filefield-source-remote">
  16. {{ 'Remote URL'|t }}
  17. </a>
  18. <a href="#" onclick="return false;" class="filefield-source filefield-source-reference">
  19. {{ 'Reference existing'|t }}
  20. </a>
  21. </div>
  22. {% endif %}
  23. </div>