diff --git a/apps/school/templates/school/livelessons_list.html b/apps/school/templates/school/livelessons_list.html index 4da84d8f..b02e4f8d 100644 --- a/apps/school/templates/school/livelessons_list.html +++ b/apps/school/templates/school/livelessons_list.html @@ -1,28 +1,35 @@ -{% extends "templates/lilcity/index.html" %} -{% load jsonify from jsonify_queryset %} - -{% load static %} {% block content %} +{% extends "templates/lilcity/index.html" %} {% load jsonify from jsonify_queryset %} {% load static %} {% block content %}
-
Онлайн-курсы LilCity
+
Уроки онлайн-школы LilCity
- - - - - - - - +
+
+ {% for livelesson in livelesson_list %} +
+ +
{{ livelesson.date }} // {{ livelesson.title }}
+
+
{{ livelesson.short_description }}
+
+
+ {% endfor %} +
+
{% endblock content %} - - -{% block foot %} - - -{% endblock foot %} diff --git a/project/templates/blocks/header.html b/project/templates/blocks/header.html index fe75a445..312d06ec 100644 --- a/project/templates/blocks/header.html +++ b/project/templates/blocks/header.html @@ -33,7 +33,7 @@
- ВИДЕОКУРСЫ + ВИДЕО-КУРСЫ
{% category_menu_items category %}
diff --git a/project/templates/blocks/last_courses.html b/project/templates/blocks/last_courses.html index 50e5b833..0b080bb8 100644 --- a/project/templates/blocks/last_courses.html +++ b/project/templates/blocks/last_courses.html @@ -1,7 +1,7 @@ {% load static %} {% if course_items %}
-
Видеокурсы без расписания
+
Видео-курсы без расписания
Если вам не совсем удобно заниматься с нами в прямом эфире каждый день как в нашей онлайн-школе, специально для вас мы делаем отдельные уроки в записи, которые вы можете проходить когда вам будем удобно.
diff --git a/web/src/components/LessonsAdmin.vue b/web/src/components/LessonsAdmin.vue deleted file mode 100644 index 469dcf09..00000000 --- a/web/src/components/LessonsAdmin.vue +++ /dev/null @@ -1,76 +0,0 @@ - - - \ No newline at end of file diff --git a/web/src/js/lessons-admin.js b/web/src/js/lessons-admin.js deleted file mode 100644 index 11b48565..00000000 --- a/web/src/js/lessons-admin.js +++ /dev/null @@ -1,16 +0,0 @@ -import Vue from 'vue' -import 'babel-polyfill' -import LessonsAdmin from '../components/LessonsAdmin.vue' - -if (process.env.NODE_ENV === 'development') { - // Enable vue-devtools - Vue.config.devtools = true; -} - - -let app = new Vue({ - el: '#lilcity-vue-app', - components: { - 'lessons-admin': LessonsAdmin, - } -}); diff --git a/web/webpack.config.js b/web/webpack.config.js index 8382b921..3c6785ab 100644 --- a/web/webpack.config.js +++ b/web/webpack.config.js @@ -9,7 +9,6 @@ module.exports = { entry: { app: "./src/js/app.js", courseRedactor: "./src/js/course-redactor.js", - lessonsAdmin: "./src/js/lessons-admin.js", mixpanel: "./src/js/third_party/mixpanel-2-latest.js", sprite: glob('./src/icons/*.svg'), images: glob('./src/img/*'),