diff options
Diffstat (limited to 'public/app/views/templates')
| -rw-r--r-- | public/app/views/templates/admin_petitions.php | 3 | ||||
| -rw-r--r-- | public/app/views/templates/admin_users.php | 3 | ||||
| -rw-r--r-- | public/app/views/templates/application.php | 1 | ||||
| -rw-r--r-- | public/app/views/templates/create_pdf.php | 1 | ||||
| -rw-r--r-- | public/app/views/templates/invite.php | 5 | ||||
| -rw-r--r-- | public/app/views/templates/penalty.php | 1 |
6 files changed, 11 insertions, 3 deletions
diff --git a/public/app/views/templates/admin_petitions.php b/public/app/views/templates/admin_petitions.php index 59c85f6..2a8479d 100644 --- a/public/app/views/templates/admin_petitions.php +++ b/public/app/views/templates/admin_petitions.php @@ -2,11 +2,12 @@ <html lang="en"> <head> <meta charset="utf-8"> + <meta name="viewport" content="width=device-width initial-scale=1"> <title><?=SITE_TITLE?> - Control Panel</title> <?php // header includes //////////////////////////////////////////////////////////////////////// - Render::view('components/header_includes'); + Render::view('components/header_includes', [ 'no_pdfmake' => true ]); ?> <style> :root { /* login-form overides */ diff --git a/public/app/views/templates/admin_users.php b/public/app/views/templates/admin_users.php index baa2e58..1fc7cc7 100644 --- a/public/app/views/templates/admin_users.php +++ b/public/app/views/templates/admin_users.php @@ -2,11 +2,12 @@ <html lang="en"> <head> <meta charset="utf-8"> + <meta name="viewport" content="width=device-width initial-scale=1"> <title><?=SITE_TITLE?> - Control Panel</title> <?php // header includes //////////////////////////////////////////////////////////////////////// - Render::view('components/header_includes'); + Render::view('components/header_includes', [ 'no_pdfmake' => true ]); ?> <style> :root { /* login-form overides */ diff --git a/public/app/views/templates/application.php b/public/app/views/templates/application.php index 72c9251..533a0bf 100644 --- a/public/app/views/templates/application.php +++ b/public/app/views/templates/application.php @@ -2,6 +2,7 @@ <html lang="en"> <head> <meta charset="utf-8"> + <meta name="viewport" content="width=device-width initial-scale=1"> <title><?=SITE_TITLE?> - Αίτηση</title> <?php // header includes diff --git a/public/app/views/templates/create_pdf.php b/public/app/views/templates/create_pdf.php index 6b5c164..2549cda 100644 --- a/public/app/views/templates/create_pdf.php +++ b/public/app/views/templates/create_pdf.php @@ -2,6 +2,7 @@ <html lang="en"> <head> <meta charset="utf-8"> + <meta name="viewport" content="width=device-width initial-scale=1"> <title><?=SITE_TITLE?></title> <style> diff --git a/public/app/views/templates/invite.php b/public/app/views/templates/invite.php index ab0f12c..25826ec 100644 --- a/public/app/views/templates/invite.php +++ b/public/app/views/templates/invite.php @@ -2,11 +2,14 @@ <html lang="en"> <head> <meta charset="utf-8"> + <meta name="viewport" content="width=device-width initial-scale=1"> <title><?=SITE_TITLE?> - Είσοδος Χρήστη</title> <?php // header includes //////////////////////////////////////////////////////////////////////// - Render::view('components/header_includes'); + Render::view('components/header_includes', + [ 'no_dataTables' => true, 'no_pdfmake' => true ] + ); ?> <style> :root { /* login-form overides */ diff --git a/public/app/views/templates/penalty.php b/public/app/views/templates/penalty.php index 232e8a8..a033925 100644 --- a/public/app/views/templates/penalty.php +++ b/public/app/views/templates/penalty.php @@ -2,6 +2,7 @@ <html lang="en"> <head> <meta charset="utf-8"> + <meta name="viewport" content="width=device-width initial-scale=1"> <title><?=SITE_TITLE?> - Πρακτικό Πειθαρχικής Υπόθεσης</title> <?php // header includes |
