diff --git a/docs/guides/custom-events-content.md b/docs/guides/custom-events-content.md
index 3dd4a1b4..305398b3 100644
--- a/docs/guides/custom-events-content.md
+++ b/docs/guides/custom-events-content.md
@@ -45,19 +45,21 @@ and coloring the event's duration into orange color.*
Then, here is the code you should use:
~~~js
-scheduler.attachEvent("onTemplatesReady", function(){
- scheduler.templates.event_header = function(start,end,ev){
- if (event.important == true){
- return ("
"+
- scheduler.templates.event_date(start)+" - "+
- } else {
- return(scheduler.templates.event_date(start)+" - "+
- scheduler.templates.event_date(end))
- }
- };
+scheduler.attachEvent("onTemplatesReady", function () {
+ scheduler.templates.event_header = function (start, end, ev) {
+ if (event.important) {
+ return ``
+ } else {
+ return (scheduler.templates.event_date(start) + " - " +
+ scheduler.templates.event_date(end))
+ }
+ };
});
...
-scheduler.init('scheduler_here', new Date(2019, 6, 5), "week");
+scheduler.init('scheduler_here', new Date(2027, 6, 5), "week");
~~~
@@ -80,13 +82,11 @@ scheduler.templates.event_text = function(start,end,ev){
Then, here is the code you should use:
~~~js
-scheduler.attachEvent("onTemplatesReady", function(){
- scheduler.templates.event_text="function(start,end,event){"
- return "" + event.text + "
-
-" + event.location + "";
+scheduler.attachEvent("onTemplatesReady", function() {
+ scheduler.templates.event_text = function(start,end,event) {
+ return `${event.text}
${event.location}`;
}
});
...
-scheduler.init('scheduler_here', new Date(2019, 6, 5), "week");
+scheduler.init('scheduler_here', new Date(2027, 6, 5), "week");
~~~
diff --git a/docs/guides/lightbox-editors.md b/docs/guides/lightbox-editors.md
index 72a4462e..eeb0acf4 100644
--- a/docs/guides/lightbox-editors.md
+++ b/docs/guides/lightbox-editors.md
@@ -7,7 +7,7 @@ sidebar_label: "Lightbox Controls"
Lightbox is an edit form used to alter the event's details. The default lightbox is presented in the image below.
-
+
## Lightbox Structure
@@ -16,7 +16,7 @@ The structure of the lightbox is specified by the **sections** property of the [
~~~js
//default lightbox definition
-scheduler.config.lightbox.sections="["
+scheduler.config.lightbox.sections = [
{name:"description", height:200, map_to:"text", type:"textarea" , focus:true},
{name:"time", height:72, type:"time", map_to:"auto"}
];
diff --git a/docs/guides/minicalendar.md b/docs/guides/minicalendar.md
index 183aa313..48060d5f 100644
--- a/docs/guides/minicalendar.md
+++ b/docs/guides/minicalendar.md
@@ -68,7 +68,7 @@ In this section we'll demonstrate you how to add a third party mini calendar (da

-**Related sample** [3rd party Mini Calendar in the header](https://snippet.dhtmlx.com/5/0dca14de9)
+**Related sample** [3rd party Mini Calendar in the header](https://snippet.dhtmlx.com/7rozjr08)
In our sample, we will add a mini calendar on the base of [jQuery](https://jquery.com) and [Bootstrap Datepicker](https://bootstrap-datepicker.readthedocs.io/en/latest/). If you use other libraries, you'll need to modify the code but the main approach should stay the same:
@@ -430,7 +430,7 @@ To customize the format of dates presented in the mini calendar (date picker), y
~~~js
scheduler.templates.calendar_month = scheduler.date.date_to_str("%M, %Y");
-scheduler.init('scheduler_here',new Date(2019,2,1),"day");
+scheduler.init('scheduler_here',new Date(2027,2,1),"day");
...
const calendar = scheduler.renderCalendar({..});
~~~
@@ -491,7 +491,7 @@ To assign a custom CSS class to a day, you can use the [markCalendar](api/method
~~~
diff --git a/docs/views/agenda-view-templates-legacy.md b/docs/views/agenda-view-templates-legacy.md
index 92370703..7c1119cc 100644
--- a/docs/views/agenda-view-templates-legacy.md
+++ b/docs/views/agenda-view-templates-legacy.md
@@ -7,7 +7,7 @@ sidebar_label: "Agenda View Templates"
*The article refers to dhtmlxScheduler 6.0 or earlier versions. If you use dhtmlxScheduler 7.0+, see details [here](views/agenda-view-templates.md).*
-
+
- [agenda_date](api/template/agenda_date.md) - the date in the header of the view
- [agenda_text](api/template/agenda_text.md) - the text in the second column of the view
diff --git a/docs/views/agenda-view-templates.md b/docs/views/agenda-view-templates.md
index dec87544..dbd6079d 100644
--- a/docs/views/agenda-view-templates.md
+++ b/docs/views/agenda-view-templates.md
@@ -5,6 +5,8 @@ sidebar_label: "Agenda View Templates"
# Agenda View Templates
+
+
*If you use dhtmlxScheduler 6.0 or earlier, see details [here](views/agenda-view-templates-legacy.md).
- [agenda_date](api/template/agenda_date.md) - the date in the header of the view
diff --git a/docs/views/timeline-view-templates.md b/docs/views/timeline-view-templates.md
index e7a7c601..ff23ee6d 100644
--- a/docs/views/timeline-view-templates.md
+++ b/docs/views/timeline-view-templates.md
@@ -5,10 +5,7 @@ sidebar_label: "Timeline View Templates"
# Timeline View Templates
-
-
-
-
+
- [event_bar_text](api/template/event_bar_text.md) - the event text
- [event_class](api/template/event_class.md) - the css style for the event container
diff --git a/docs/views/units.md b/docs/views/units.md
index 7e80df61..bc6fd7de 100644
--- a/docs/views/units.md
+++ b/docs/views/units.md
@@ -139,7 +139,7 @@ scheduler.date.units_start = function (date) {
Starting from version 4.1, you have a possibility to assign events to several units.
-
+
To enable the possibility:
diff --git a/docs/views/weekagenda-view-templates.md b/docs/views/weekagenda-view-templates.md
index 4b340004..4e9913a9 100644
--- a/docs/views/weekagenda-view-templates.md
+++ b/docs/views/weekagenda-view-templates.md
@@ -5,7 +5,7 @@ sidebar_label: "WeekAgenda View Templates"
# WeekAgenda View Templates
-
+
- [week_agenda_event_text](api/template/week_agenda_event_text.md) - specifies the event text
- [week_agenda_scale_date](api/template/week_agenda_scale_date.md) - the date of a day cell of the view
diff --git a/docs/views/weekagenda.md b/docs/views/weekagenda.md
index 0e7210b5..de8e00c2 100644
--- a/docs/views/weekagenda.md
+++ b/docs/views/weekagenda.md
@@ -14,7 +14,7 @@ The Week Agenda view is a combination of Week and Agenda views presenting a list

-[WeekAgenda view](https://docs.dhtmlx.com/scheduler/samples/03_extensions/24_week_agenda.html)
+[Week Agenda view](https://docs.dhtmlx.com/scheduler/samples/03_extensions/24_week_agenda.html)
## Initialization
@@ -43,7 +43,7 @@ scheduler.plugins({
scheduler.locale.labels.week_agenda_tab = "Week Agenda";
~~~
-[WeekAgenda view](https://docs.dhtmlx.com/scheduler/samples/03_extensions/24_week_agenda.html)
+[Week Agenda view](https://docs.dhtmlx.com/scheduler/samples/03_extensions/24_week_agenda.html)
## GUI details
@@ -54,7 +54,7 @@ scheduler.locale.labels.week_agenda_tab = "Week Agenda";
## Related guides
- [Common Config Instructions](guides/configuration.md)
-- [WeekAgenda View Templates](views/weekagenda-view-templates.md)
+- [Week Agenda View Templates](views/weekagenda-view-templates.md)
- [Loading Data](guides/loading-data.md)
- [Skins](guides/skins.md)
- [Localization](guides/localization.md)
diff --git a/i18n/de/docusaurus-plugin-content-docs/current/views/timeline-view-templates.md b/i18n/de/docusaurus-plugin-content-docs/current/views/timeline-view-templates.md
index 93f287b9..8209a14a 100644
--- a/i18n/de/docusaurus-plugin-content-docs/current/views/timeline-view-templates.md
+++ b/i18n/de/docusaurus-plugin-content-docs/current/views/timeline-view-templates.md
@@ -5,10 +5,7 @@ sidebar_label: "Timeline-Ansichtsvorlagen"
# Timeline-Ansichtsvorlagen
-
-
-
-
+
- [event_bar_text](api/template/event_bar_text.md) - zeigt den Text innerhalb eines Ereignisses an
- [event_class](api/template/event_class.md) - definiert den CSS-Stil für den Ereignis-Container
diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/views/timeline-view-templates.md b/i18n/ko/docusaurus-plugin-content-docs/current/views/timeline-view-templates.md
index e6dee2fe..871e4103 100644
--- a/i18n/ko/docusaurus-plugin-content-docs/current/views/timeline-view-templates.md
+++ b/i18n/ko/docusaurus-plugin-content-docs/current/views/timeline-view-templates.md
@@ -5,10 +5,7 @@ sidebar_label: "타임라인 뷰 템플릿"
# 타임라인 뷰 템플릿
-
-
-
-
+
- [event_bar_text](api/template/event_bar_text.md) - 이벤트 내부에 표시되는 텍스트를 설정합니다.
- [event_class](api/template/event_class.md) - 이벤트 컨테이너의 CSS 스타일을 정의합니다.
diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/views/timeline-view-templates.md b/i18n/ru/docusaurus-plugin-content-docs/current/views/timeline-view-templates.md
index 70debc4e..60831cf0 100644
--- a/i18n/ru/docusaurus-plugin-content-docs/current/views/timeline-view-templates.md
+++ b/i18n/ru/docusaurus-plugin-content-docs/current/views/timeline-view-templates.md
@@ -5,9 +5,7 @@ sidebar_label: "Шаблоны представления Timeline"
# Шаблоны представления Timeline
-
-
-
+
- [event_bar_text](api/template/event_bar_text.md) - отображает текст внутри события
- [event_class](api/template/event_class.md) - определяет CSS-стиль для контейнера события
diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/views/timeline-view-templates.md b/i18n/zh/docusaurus-plugin-content-docs/current/views/timeline-view-templates.md
index dd593567..96ba33c7 100644
--- a/i18n/zh/docusaurus-plugin-content-docs/current/views/timeline-view-templates.md
+++ b/i18n/zh/docusaurus-plugin-content-docs/current/views/timeline-view-templates.md
@@ -5,10 +5,7 @@ sidebar_label: "时间线视图模板"
# 时间线视图模板
-
-
-
-
+
- [event_bar_text](api/template/event_bar_text.md) - 显示事件内部的文本
- [event_class](api/template/event_class.md) - 定义事件容器的CSS样式
diff --git a/static/img/agenda.png b/static/img/agenda.png
index e7b74222..a3c0e561 100644
Binary files a/static/img/agenda.png and b/static/img/agenda.png differ
diff --git a/static/img/agenda_view_templates.png b/static/img/agenda_view_templates.png
index 989d774b..2d03e741 100644
Binary files a/static/img/agenda_view_templates.png and b/static/img/agenda_view_templates.png differ
diff --git a/static/img/agenda_view_templates_legacy.png b/static/img/agenda_view_templates_legacy.png
new file mode 100644
index 00000000..989d774b
Binary files /dev/null and b/static/img/agenda_view_templates_legacy.png differ
diff --git a/static/img/architecture.png b/static/img/architecture.png
deleted file mode 100644
index 84aa9bcc..00000000
Binary files a/static/img/architecture.png and /dev/null differ
diff --git a/static/img/buttons_property.png b/static/img/buttons_property.png
index 58b63ee9..9e77b956 100644
Binary files a/static/img/buttons_property.png and b/static/img/buttons_property.png differ
diff --git a/static/img/calendar_in_header.png b/static/img/calendar_in_header.png
index e05e7ce3..8593a217 100644
Binary files a/static/img/calendar_in_header.png and b/static/img/calendar_in_header.png differ
diff --git a/static/img/checkbox_editor.png b/static/img/checkbox_editor.png
index 577daea7..c5c8c468 100644
Binary files a/static/img/checkbox_editor.png and b/static/img/checkbox_editor.png differ
diff --git a/static/img/combo_editor.png b/static/img/combo_editor.png
index 3f5f076a..b6fa4ffd 100644
Binary files a/static/img/combo_editor.png and b/static/img/combo_editor.png differ
diff --git a/static/img/container_autoresize_property.png b/static/img/container_autoresize_property.png
index 3892560f..7e9e4e75 100644
Binary files a/static/img/container_autoresize_property.png and b/static/img/container_autoresize_property.png differ
diff --git a/static/img/contrast_black_skin.png b/static/img/contrast_black_skin.png
index 02d12153..14ce10bd 100644
Binary files a/static/img/contrast_black_skin.png and b/static/img/contrast_black_skin.png differ
diff --git a/static/img/contrast_white_skin.png b/static/img/contrast_white_skin.png
index 2e140b86..feb464c2 100644
Binary files a/static/img/contrast_white_skin.png and b/static/img/contrast_white_skin.png differ
diff --git a/static/img/custom_cell_content.png b/static/img/custom_cell_content.png
index 2329b316..27874d4d 100644
Binary files a/static/img/custom_cell_content.png and b/static/img/custom_cell_content.png differ
diff --git a/static/img/custom_editor.png b/static/img/custom_editor.png
index 5158ef6c..0d0b18bd 100644
Binary files a/static/img/custom_editor.png and b/static/img/custom_editor.png differ
diff --git a/static/img/custom_event_color.png b/static/img/custom_event_color.png
index 33c6f6ec..510203f6 100644
Binary files a/static/img/custom_event_color.png and b/static/img/custom_event_color.png differ
diff --git a/static/img/custom_event_header.png b/static/img/custom_event_header.png
index 0954235e..53a47b3f 100644
Binary files a/static/img/custom_event_header.png and b/static/img/custom_event_header.png differ
diff --git a/static/img/custom_event_text.png b/static/img/custom_event_text.png
index d114217c..56db874b 100644
Binary files a/static/img/custom_event_text.png and b/static/img/custom_event_text.png differ
diff --git a/static/img/custom_minicalendar.png b/static/img/custom_minicalendar.png
index db7836c2..5c9b9fef 100644
Binary files a/static/img/custom_minicalendar.png and b/static/img/custom_minicalendar.png differ
diff --git a/static/img/custom_view.png b/static/img/custom_view.png
index 04e932a2..5a2306e1 100644
Binary files a/static/img/custom_view.png and b/static/img/custom_view.png differ
diff --git a/static/img/customizing_edit_bar.png b/static/img/customizing_edit_bar.png
index 0c8df250..1d479e03 100644
Binary files a/static/img/customizing_edit_bar.png and b/static/img/customizing_edit_bar.png differ
diff --git a/static/img/customizing_select_bar.png b/static/img/customizing_select_bar.png
index cf68d4d3..5851d64c 100644
Binary files a/static/img/customizing_select_bar.png and b/static/img/customizing_select_bar.png differ
diff --git a/static/img/day.png b/static/img/day.png
index 152924c4..4f3fe1da 100644
Binary files a/static/img/day.png and b/static/img/day.png differ
diff --git a/static/img/day_view.png b/static/img/day_view.png
index c286645a..3187d9bd 100644
Binary files a/static/img/day_view.png and b/static/img/day_view.png differ
diff --git a/static/img/day_view_properties.png b/static/img/day_view_properties.png
index 2f6dc1e4..a8979e09 100644
Binary files a/static/img/day_view_properties.png and b/static/img/day_view_properties.png differ
diff --git a/static/img/day_view_templates.png b/static/img/day_view_templates.png
index 5f70f774..e2f931d4 100644
Binary files a/static/img/day_view_templates.png and b/static/img/day_view_templates.png differ
diff --git a/static/img/day_xy_property.png b/static/img/day_xy_property.png
index ee503403..e634848a 100644
Binary files a/static/img/day_xy_property.png and b/static/img/day_xy_property.png differ
diff --git a/static/img/default_event_text.png b/static/img/default_event_text.png
index b1317c3c..65148613 100644
Binary files a/static/img/default_event_text.png and b/static/img/default_event_text.png differ
diff --git a/static/img/grid.png b/static/img/grid.png
index 41fb9273..0af1dd4a 100644
Binary files a/static/img/grid.png and b/static/img/grid.png differ
diff --git a/static/img/grid_view.png b/static/img/grid_view.png
index fe7428d0..e2ef30da 100644
Binary files a/static/img/grid_view.png and b/static/img/grid_view.png differ
diff --git a/static/img/grid_view_templates.png b/static/img/grid_view_templates.png
index da0d7bee..ebb0118f 100644
Binary files a/static/img/grid_view_templates.png and b/static/img/grid_view_templates.png differ
diff --git a/static/img/hiding_time_units.png b/static/img/hiding_time_units.png
index 8e0be586..adf9789e 100644
Binary files a/static/img/hiding_time_units.png and b/static/img/hiding_time_units.png differ
diff --git a/static/img/highlighting_hidden_hours.png b/static/img/highlighting_hidden_hours.png
index 1c22b7e3..9278ad0e 100644
Binary files a/static/img/highlighting_hidden_hours.png and b/static/img/highlighting_hidden_hours.png differ
diff --git a/static/img/in_the_lightbox.png b/static/img/in_the_lightbox.png
index 11d822b9..c750a57c 100644
Binary files a/static/img/in_the_lightbox.png and b/static/img/in_the_lightbox.png differ
diff --git a/static/img/lightbox_buttons.png b/static/img/lightbox_buttons.png
index 743b69a0..1a902190 100644
Binary files a/static/img/lightbox_buttons.png and b/static/img/lightbox_buttons.png differ
diff --git a/static/img/lightbox_config.png b/static/img/lightbox_config.png
deleted file mode 100644
index 0e2518a6..00000000
Binary files a/static/img/lightbox_config.png and /dev/null differ
diff --git a/static/img/limits_priority.png b/static/img/limits_priority.png
index d78315c1..4ed1cc2c 100644
Binary files a/static/img/limits_priority.png and b/static/img/limits_priority.png differ
diff --git a/static/img/map.png b/static/img/map.png
index 6744820b..9ec89785 100644
Binary files a/static/img/map.png and b/static/img/map.png differ
diff --git a/static/img/map_view.png b/static/img/map_view.png
index daad2195..b62fbb86 100644
Binary files a/static/img/map_view.png and b/static/img/map_view.png differ
diff --git a/static/img/map_view_templates.png b/static/img/map_view_templates.png
index dcbba3d2..7ba8b7c7 100644
Binary files a/static/img/map_view_templates.png and b/static/img/map_view_templates.png differ
diff --git a/static/img/map_xy_property.png b/static/img/map_xy_property.png
index 76a45e5d..9d4952d1 100644
Binary files a/static/img/map_xy_property.png and b/static/img/map_xy_property.png differ
diff --git a/static/img/mini_calendar.png b/static/img/mini_calendar.png
index 573f7160..8300ff99 100644
Binary files a/static/img/mini_calendar.png and b/static/img/mini_calendar.png differ
diff --git a/static/img/month.png b/static/img/month.png
index c3b5f056..b53a9b84 100644
Binary files a/static/img/month.png and b/static/img/month.png differ
diff --git a/static/img/month_view.png b/static/img/month_view.png
index af45067f..8c9497ef 100644
Binary files a/static/img/month_view.png and b/static/img/month_view.png differ
diff --git a/static/img/month_view_templates.png b/static/img/month_view_templates.png
index 1433a6d1..7aa7834e 100644
Binary files a/static/img/month_view_templates.png and b/static/img/month_view_templates.png differ
diff --git a/static/img/month_xy_property.png b/static/img/month_xy_property.png
index 7193337f..f7130b5b 100644
Binary files a/static/img/month_xy_property.png and b/static/img/month_xy_property.png differ
diff --git a/static/img/multiday_units.png b/static/img/multiday_units.png
index 14e5452d..6fee6586 100644
Binary files a/static/img/multiday_units.png and b/static/img/multiday_units.png differ
diff --git a/static/img/multiple_sections.png b/static/img/multiple_sections.png
index 81ddc3b2..8f21ecae 100644
Binary files a/static/img/multiple_sections.png and b/static/img/multiple_sections.png differ
diff --git a/static/img/multiple_sections_units.png b/static/img/multiple_sections_units.png
new file mode 100644
index 00000000..7018f7ab
Binary files /dev/null and b/static/img/multiple_sections_units.png differ
diff --git a/static/img/multiselect_editor.png b/static/img/multiselect_editor.png
index 78245dd8..46cc77d3 100644
Binary files a/static/img/multiselect_editor.png and b/static/img/multiselect_editor.png differ
diff --git a/static/img/option_event_text.png b/static/img/option_event_text.png
index 76c751e8..18a4e7ee 100644
Binary files a/static/img/option_event_text.png and b/static/img/option_event_text.png differ
diff --git a/static/img/outside_the_scheduler.png b/static/img/outside_the_scheduler.png
index 1ecc4d57..d4d124d0 100644
Binary files a/static/img/outside_the_scheduler.png and b/static/img/outside_the_scheduler.png differ
diff --git a/static/img/radio_editor.png b/static/img/radio_editor.png
index 912841cd..9900facc 100644
Binary files a/static/img/radio_editor.png and b/static/img/radio_editor.png differ
diff --git a/static/img/resizemonthtimed_config.png b/static/img/resizemonthtimed_config.png
index 181af544..14bae1d5 100644
Binary files a/static/img/resizemonthtimed_config.png and b/static/img/resizemonthtimed_config.png differ
diff --git a/static/img/scheduler_standard_form.png b/static/img/scheduler_standard_form.png
index 0ff00c18..c53b5a67 100644
Binary files a/static/img/scheduler_standard_form.png and b/static/img/scheduler_standard_form.png differ
diff --git a/static/img/scheduler_wide_form.png b/static/img/scheduler_wide_form.png
index 607d37ea..b2890b95 100644
Binary files a/static/img/scheduler_wide_form.png and b/static/img/scheduler_wide_form.png differ
diff --git a/static/img/select_editor.png b/static/img/select_editor.png
index f43ded0d..ec7c025c 100644
Binary files a/static/img/select_editor.png and b/static/img/select_editor.png differ
diff --git a/static/img/standard_form.png b/static/img/standard_form.png
index b7532d62..c53b5a67 100644
Binary files a/static/img/standard_form.png and b/static/img/standard_form.png differ
diff --git a/static/img/stretching_events_01.png b/static/img/stretching_events_01.png
index cb0be6ea..70666a0b 100644
Binary files a/static/img/stretching_events_01.png and b/static/img/stretching_events_01.png differ
diff --git a/static/img/stretching_events_02.png b/static/img/stretching_events_02.png
index b9ab0983..3c5a211f 100644
Binary files a/static/img/stretching_events_02.png and b/static/img/stretching_events_02.png differ
diff --git a/static/img/template_editor.png b/static/img/template_editor.png
index 82f77a9b..21b154a8 100644
Binary files a/static/img/template_editor.png and b/static/img/template_editor.png differ
diff --git a/static/img/textarea_editor.png b/static/img/textarea_editor.png
index 7acec1f8..c8d24f19 100644
Binary files a/static/img/textarea_editor.png and b/static/img/textarea_editor.png differ
diff --git a/static/img/time_editor.png b/static/img/time_editor.png
index 7e488aa6..b814636c 100644
Binary files a/static/img/time_editor.png and b/static/img/time_editor.png differ
diff --git a/static/img/timeline.png b/static/img/timeline.png
index 87cdb592..bde170f4 100644
Binary files a/static/img/timeline.png and b/static/img/timeline.png differ
diff --git a/static/img/timeline_bar_mode.png b/static/img/timeline_bar_mode.png
index ccbfd998..b0b23d4b 100644
Binary files a/static/img/timeline_bar_mode.png and b/static/img/timeline_bar_mode.png differ
diff --git a/static/img/timeline_cell_mode.png b/static/img/timeline_cell_mode.png
index 8fa0c870..835d505e 100644
Binary files a/static/img/timeline_cell_mode.png and b/static/img/timeline_cell_mode.png differ
diff --git a/static/img/timeline_days_mode.png b/static/img/timeline_days_mode.png
index 1f7b09dd..cd143efb 100644
Binary files a/static/img/timeline_days_mode.png and b/static/img/timeline_days_mode.png differ
diff --git a/static/img/timeline_loading.png b/static/img/timeline_loading.png
index 9cf20909..d5a5647b 100644
Binary files a/static/img/timeline_loading.png and b/static/img/timeline_loading.png differ
diff --git a/static/img/timeline_scale_01.png b/static/img/timeline_scale_01.png
index b8212d59..81828f26 100644
Binary files a/static/img/timeline_scale_01.png and b/static/img/timeline_scale_01.png differ
diff --git a/static/img/timeline_scale_interval.png b/static/img/timeline_scale_interval.png
index 22b1806a..9f646779 100644
Binary files a/static/img/timeline_scale_interval.png and b/static/img/timeline_scale_interval.png differ
diff --git a/static/img/timeline_second_axis.png b/static/img/timeline_second_axis.png
index 3997dca1..b9ade350 100644
Binary files a/static/img/timeline_second_axis.png and b/static/img/timeline_second_axis.png differ
diff --git a/static/img/timeline_tree_mode.png b/static/img/timeline_tree_mode.png
index 50541a0a..70216095 100644
Binary files a/static/img/timeline_tree_mode.png and b/static/img/timeline_tree_mode.png differ
diff --git a/static/img/timeline_view.png b/static/img/timeline_view.png
index 2fd35cc4..b0b23d4b 100644
Binary files a/static/img/timeline_view.png and b/static/img/timeline_view.png differ
diff --git a/static/img/timeline_view_templates.png b/static/img/timeline_view_templates.png
new file mode 100644
index 00000000..8ba541e6
Binary files /dev/null and b/static/img/timeline_view_templates.png differ
diff --git a/static/img/timeline_view_templates_01.png b/static/img/timeline_view_templates_01.png
deleted file mode 100644
index 835bb0a4..00000000
Binary files a/static/img/timeline_view_templates_01.png and /dev/null differ
diff --git a/static/img/timeline_view_templates_02.png b/static/img/timeline_view_templates_02.png
deleted file mode 100644
index c7461faa..00000000
Binary files a/static/img/timeline_view_templates_02.png and /dev/null differ
diff --git a/static/img/units.png b/static/img/units.png
index 266bb761..ec857494 100644
Binary files a/static/img/units.png and b/static/img/units.png differ
diff --git a/static/img/units_scroll.png b/static/img/units_scroll.png
index f40542aa..326e3025 100644
Binary files a/static/img/units_scroll.png and b/static/img/units_scroll.png differ
diff --git a/static/img/units_view.png b/static/img/units_view.png
index 793035e1..e027f92b 100644
Binary files a/static/img/units_view.png and b/static/img/units_view.png differ
diff --git a/static/img/units_view_templates.png b/static/img/units_view_templates.png
index ddb8634b..b97302ab 100644
Binary files a/static/img/units_view_templates.png and b/static/img/units_view_templates.png differ
diff --git a/static/img/week.png b/static/img/week.png
index 65fd8355..6a63e709 100644
Binary files a/static/img/week.png and b/static/img/week.png differ
diff --git a/static/img/weekAgenda_view_templates.png b/static/img/weekAgenda_view_templates.png
index b84ae470..6e1264f7 100644
Binary files a/static/img/weekAgenda_view_templates.png and b/static/img/weekAgenda_view_templates.png differ
diff --git a/static/img/weekView_properties.png b/static/img/weekView_properties.png
index ab3c8b65..68c2bde1 100644
Binary files a/static/img/weekView_properties.png and b/static/img/weekView_properties.png differ
diff --git a/static/img/week_agenda_view.png b/static/img/week_agenda_view.png
deleted file mode 100644
index 3cdc8ec9..00000000
Binary files a/static/img/week_agenda_view.png and /dev/null differ
diff --git a/static/img/week_template.png b/static/img/week_template.png
deleted file mode 100644
index e82f6cc7..00000000
Binary files a/static/img/week_template.png and /dev/null differ
diff --git a/static/img/week_view.png b/static/img/week_view.png
index 8b4f3c68..7f58f9b8 100644
Binary files a/static/img/week_view.png and b/static/img/week_view.png differ
diff --git a/static/img/week_view_templates.png b/static/img/week_view_templates.png
index 9dfeb923..01c3bc88 100644
Binary files a/static/img/week_view_templates.png and b/static/img/week_view_templates.png differ
diff --git a/static/img/week_xy_property.png b/static/img/week_xy_property.png
index 46300e86..7bb6c99d 100644
Binary files a/static/img/week_xy_property.png and b/static/img/week_xy_property.png differ
diff --git a/static/img/weekagenda.png b/static/img/weekagenda.png
index f6fb9d3a..e07f6c60 100644
Binary files a/static/img/weekagenda.png and b/static/img/weekagenda.png differ
diff --git a/static/img/weekagenda_view.png b/static/img/weekagenda_view.png
index 876d5d95..52976b91 100644
Binary files a/static/img/weekagenda_view.png and b/static/img/weekagenda_view.png differ
diff --git a/static/img/weekagendaview.png b/static/img/weekagendaview.png
deleted file mode 100644
index 7a34ff3f..00000000
Binary files a/static/img/weekagendaview.png and /dev/null differ
diff --git a/static/img/wideForm_property.png b/static/img/wideForm_property.png
deleted file mode 100644
index 72ce3ba3..00000000
Binary files a/static/img/wideForm_property.png and /dev/null differ
diff --git a/static/img/wide_form.png b/static/img/wide_form.png
deleted file mode 100644
index 1b4bc9e9..00000000
Binary files a/static/img/wide_form.png and /dev/null differ
diff --git a/static/img/wide_form_false.png b/static/img/wide_form_false.png
index 0518c309..eae55b0b 100644
Binary files a/static/img/wide_form_false.png and b/static/img/wide_form_false.png differ
diff --git a/static/img/wide_form_true.png b/static/img/wide_form_true.png
index 45fc5adc..bf606217 100644
Binary files a/static/img/wide_form_true.png and b/static/img/wide_form_true.png differ
diff --git a/static/img/year.png b/static/img/year.png
index b2cb8f06..acf8cfd4 100644
Binary files a/static/img/year.png and b/static/img/year.png differ
diff --git a/static/img/year_view.png b/static/img/year_view.png
index 2b7752f9..50af7590 100644
Binary files a/static/img/year_view.png and b/static/img/year_view.png differ
diff --git a/static/img/year_view_templates.png b/static/img/year_view_templates.png
index 0a30f4d9..d5fb66d9 100644
Binary files a/static/img/year_view_templates.png and b/static/img/year_view_templates.png differ