diff --git a/wecker_manufaktur/page/default_page/tpl/person_details.tpl b/wecker_manufaktur/page/default_page/tpl/person_details.tpl index 169951d..37ffc92 100644 --- a/wecker_manufaktur/page/default_page/tpl/person_details.tpl +++ b/wecker_manufaktur/page/default_page/tpl/person_details.tpl @@ -13,6 +13,10 @@
| + | Rows: ${count} Page: ${page} | |||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| + | @@ -19,6 +19,7 @@ | Image | Name | Info | +Contact | Abilities | Order | Visible | diff --git a/wecker_manufaktur/sai/saimod_person/tpl/saimod_person_details.tpl b/wecker_manufaktur/sai/saimod_person/tpl/saimod_person_details.tpl index 64f5514..bf384ae 100644 --- a/wecker_manufaktur/sai/saimod_person/tpl/saimod_person_details.tpl +++ b/wecker_manufaktur/sai/saimod_person/tpl/saimod_person_details.tpl @@ -20,6 +20,10 @@Info | |||||||||||||
| Info | ++ | |||||||||||||||||||||
| Visibility | diff --git a/wecker_manufaktur/sai/saimod_person/tpl/saimod_person_new.tpl b/wecker_manufaktur/sai/saimod_person/tpl/saimod_person_new.tpl index 4d8a295..a22471f 100644 --- a/wecker_manufaktur/sai/saimod_person/tpl/saimod_person_new.tpl +++ b/wecker_manufaktur/sai/saimod_person/tpl/saimod_person_new.tpl @@ -20,6 +20,10 @@ | Info | ||||||||||||||||||||
| Contact | ++ | |||||||||||||||||||||
| Visibility | diff --git a/wecker_manufaktur/sai/saimod_person/tpl/saimod_person_tr.tpl b/wecker_manufaktur/sai/saimod_person/tpl/saimod_person_tr.tpl index abcc910..6b7948e 100644 --- a/wecker_manufaktur/sai/saimod_person/tpl/saimod_person_tr.tpl +++ b/wecker_manufaktur/sai/saimod_person/tpl/saimod_person_tr.tpl @@ -2,6 +2,7 @@ | ${name} | ${info} | +${contact} | ${abilities} | diff --git a/wecker_manufaktur/sai/saimod_project/sql/mysql/persons.schema.sql b/wecker_manufaktur/sai/saimod_project/sql/mysql/persons.schema.sql index 9167ae2..5f1c60c 100644 --- a/wecker_manufaktur/sai/saimod_project/sql/mysql/persons.schema.sql +++ b/wecker_manufaktur/sai/saimod_project/sql/mysql/persons.schema.sql @@ -3,6 +3,7 @@ CREATE TABLE `persons` ( `name` VARCHAR(50) NOT NULL COLLATE 'utf8mb4_unicode_ci', `img` VARCHAR(50) NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci', `info` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci', + `contact` TEXT NULL DEFAULT NULL COLLATE 'utf8mb4_unicode_ci', `order` INT(10) UNSIGNED NOT NULL, `visible` INT(10) UNSIGNED NULL DEFAULT 1, PRIMARY KEY (`id`), @@ -11,4 +12,4 @@ CREATE TABLE `persons` ( COLLATE='utf8mb4_unicode_ci' ENGINE=InnoDB AUTO_INCREMENT=1 -; \ No newline at end of file +; | ||||||||||||||||