admin.twig 838 B

123456789101112131415161718
  1. <div class="import clearfix">
  2. <h3>
  3. <img style="margin: 0 5px 0 0; vertical-align: middle; height: 16px" width="16" height="16" alt="Import" src="{% asset 'bundles/webprofiler/images/import.png' %}" />
  4. Admin
  5. </h3>
  6. <form action="{{ path('_profiler_import') }}" method="post" enctype="multipart/form-data">
  7. <div style="margin-bottom: 10px">
  8. &raquo;&nbsp;<a href="{{ path('_profiler_purge', { 'token': token }) }}">Purge</a>
  9. </div>
  10. <div style="margin-bottom: 10px">
  11. &raquo;&nbsp;<a href="{{ path('_profiler_export', { 'token': token }) }}">Export</a>
  12. </div>
  13. &raquo;&nbsp;<label for="file">Import</label><br />
  14. <input type="file" name="file" id="file" /><br />
  15. <input class="submit" type="submit" value="upload" />
  16. </form>
  17. </div>