|
|
@@ -1,11 +1,19 @@
|
|
|
-<div id ="admin-importer">
|
|
|
-<h1 style="background : linear-gradient(to right,
|
|
|
-red,
|
|
|
-orange,
|
|
|
-yellow,
|
|
|
-green,
|
|
|
-aqua,
|
|
|
-blue,
|
|
|
-purple);
|
|
|
-display: inline;
|
|
|
-color: white">HELLO REACT!</h1>
|
|
|
+
|
|
|
+{% extends '../layout/admin.html' %}
|
|
|
+
|
|
|
+{% block html_title %}{{ customizeService.generateCustomTitle(t('Import Data')) }}{% endblock %}
|
|
|
+
|
|
|
+{% block content_header %}
|
|
|
+<div class="header-wrap">
|
|
|
+ <header id="page-header">
|
|
|
+ <h1 id="admin-title" class="title">{{ t('Import Data') }}</h1>
|
|
|
+ </header>
|
|
|
+</div>
|
|
|
+{% endblock %}
|
|
|
+
|
|
|
+{% block content_main %}
|
|
|
+<div id ="admin-importer"></div>
|
|
|
+{% endblock content_main %}
|
|
|
+
|
|
|
+{% block content_footer %}
|
|
|
+{% endblock content_footer %}
|