diff --git a/admin/survey/classes/class.SurveyTelephone.php b/admin/survey/classes/class.SurveyTelephone.php
index 2acc9956f..8fc44ecd7 100644
--- a/admin/survey/classes/class.SurveyTelephone.php
+++ b/admin/survey/classes/class.SurveyTelephone.php
@@ -205,9 +205,18 @@ class SurveyTelephone {
$date_to = '';
if(isset($_GET['date_to']))
$date_to = strtotime($_GET['date_to']);
+
+ echo '
';
- echo ''.$lang['s_from'].': ';
- echo ''.$lang['s_to'].': ';
echo '';
- echo ''.$lang['srv_clear'].'';
echo '';
@@ -410,7 +418,6 @@ class SurveyTelephone {
echo ''.Common::formatNumberSimple(((int)$recipients_by_status['contacted'] > 0 ? (int)$recipients_by_status['finished']*100/(int)$recipients_by_status['contacted'] : 0),0,'%').' | ';
echo '';
echo '';
- echo '
';
echo '';
echo '';
}
@@ -440,7 +447,6 @@ class SurveyTelephone {
}
echo '';
- echo '
';
echo '';
echo '';
diff --git a/lang/1.php b/lang/1.php
index 4d72ee818..8034a4761 100644
--- a/lang/1.php
+++ b/lang/1.php
@@ -6368,7 +6368,7 @@ $lang = array (
'srv_telephone_save_new' => 'Shrani kot nov profil',
'srv_telephone_save' => 'Shrani profil',
'srv_telephone_add' => 'Dodaj',
- 'srv_telephone_navi_dashboard' => 'Pregled',
+ 'srv_telephone_navi_dashboard' => 'Analiza',
'srv_telephone_navi_add' => 'Dodaj',
'srv_telephone_navi_view' => 'Preglej',
'srv_telephone_navi_start_call' => 'Začni',
@@ -6445,6 +6445,7 @@ $lang = array (
'srv_telephone_no_respondents' => 'V bazi nimate respondentov s telefonskimi številkami.',
'srv_telephone_dashboard_legend' => 'Sumarni pregled telefonske ankete:',
'srv_telephone_dashboard_legend_finished' => 'Sumarni pregled zaključenih anket:',
+ 'srv_telephone_dashboard_legend_datum' => 'Počisti datum',
'srv_telephone_dashboard_legend_anketar' => 'Pregled stanja klicev po anketarjih:',
'srv_telephone_dashboard_all_respondents' => 'Vseh enot s telefonsko številko:',
'srv_telephone_dashboard_all_contacted' => 'Vseh klicanih enot:',
diff --git a/lang/2.php b/lang/2.php
index e4c7debd4..6b4e6e1c5 100644
--- a/lang/2.php
+++ b/lang/2.php
@@ -6261,7 +6261,7 @@ $lang = array (
'srv_telephone_save_new' => 'Save as New profile',
'srv_telephone_save' => 'Save profile',
'srv_telephone_add' => 'Add',
- 'srv_telephone_navi_dashboard' => 'Dashboard',
+ 'srv_telephone_navi_dashboard' => 'Analysis',
'srv_telephone_navi_add' => 'Add',
'srv_telephone_navi_view' => 'Recipients',
'srv_telephone_navi_start_call' => 'Start',
@@ -6339,6 +6339,7 @@ $lang = array (
'srv_telephone_no_respondents' => 'There are no respondents with telephone numbers in your database.',
'srv_telephone_dashboard_legend' => 'Phone survey status:',
'srv_telephone_dashboard_legend_finished' => 'Summary of finished phone surveys:',
+ 'srv_telephone_dashboard_legend_datum' => 'Clear date',
'srv_telephone_dashboard_legend_anketar' => 'Phone survey status by interviewer:',
'srv_telephone_dashboard_all_respondents' => 'All units with the phone number:',
'srv_telephone_dashboard_all_contacted' => 'All called units:',
diff --git a/public/css/admin_new.css b/public/css/admin_new.css
index b7d968052..282fccb19 100644
--- a/public/css/admin_new.css
+++ b/public/css/admin_new.css
@@ -20580,6 +20580,20 @@ div.page_telephone fieldset#tel_setting div.set_horizontal input {
div.page_telephone fieldset#tel_setting select {
width: 100px;
}
+div.page_telephone div.set_horizontal {
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ margin-bottom: 16px;
+}
+div.page_telephone div.set_horizontal input {
+ width: 110px;
+ margin-right: 0px;
+ margin-left: 8px;
+}
+div.page_telephone div.set_horizontal button {
+ margin-right: 8px;
+}
div.prevajanje_holder .section {
margin: 0 16px 16px 16px;
diff --git a/resources/sass/admin_new/pages/survey_edit/telefonska_anketa.scss b/resources/sass/admin_new/pages/survey_edit/telefonska_anketa.scss
index 0b46f9ead..77d158623 100644
--- a/resources/sass/admin_new/pages/survey_edit/telefonska_anketa.scss
+++ b/resources/sass/admin_new/pages/survey_edit/telefonska_anketa.scss
@@ -370,4 +370,24 @@ div.page_telephone {
width: 100px;
}
}
+
+ //Analiza
+ div.set_horizontal {
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+
+ margin-bottom: 16px;
+
+ input {
+ width: 110px;
+ margin-right: 0px;
+ margin-left: 8px;
+ }
+
+ button {
+ margin-right: 8px;
+ }
+ }
+
}
\ No newline at end of file