Add embed hint to datapreviews
[ckanext-datagovau.git] / ckanext / datagovau / templates / dataviewer / snippets / data_preview.html
blob:a/ckanext/datagovau/templates/dataviewer/snippets/data_preview.html -> blob:b/ckanext/datagovau/templates/dataviewer/snippets/data_preview.html
  <div class="module-content ckanext-datapreview">
  {% if embed %}
  {# images can be embedded directly #}
  <img src="{{ resource_url }}"></img>
  {% else %}
  <div class="data-viewer-error js-hide">
  <p class="text-error">
  <i class="icon-info-sign"></i>
  {{ _('This resource can not be previewed at the moment.') }}
  <a href="#" data-toggle="collapse" data-target="#data-view-error">
  {{ _('Click here for more information.') }}
  </a>
  </p>
  <p id="data-view-error" class="collapse"></p>
  <p>
  <a href="{{ raw_resource_url }}" class="btn btn-large resource-url-analytics" target="_blank">
  <i class="icon-large icon-download"></i>
  {{ _('Download resource') }}
  </a>
  </p>
  </div>
  <iframe src="{{ resource_url }}" frameborder="0" width="100%" data-module="data-viewer">
  <p>{{ _('Your browser does not support iframes.') }}</p>
  </iframe>
  {% endif %}
  </div>
  <div class="embedhint" style="padding-left: 15px;">
  <h4>Embed this visualisation in your own website...</h4>
  Copy the HTML in the box below and you can display this visualisation on your own website.<br/>
  <textarea style="width:97%">&lt;iframe src="{{ resource_url }}" frameborder="0" width="100%" height="600px"&gt;&lt;/iframe&gt;</textarea>
  </div>