36 lines
839 B
Markdown
36 lines
839 B
Markdown
---
|
|
organization:
|
|
address:
|
|
street: An der Alster 64
|
|
city: Hamburg
|
|
code: 20099
|
|
country: Deutschland
|
|
url: http://www.cimt-ag.de/
|
|
parent_company: "[[cimt AG]]"
|
|
---
|
|
|
|
## Kontakte
|
|
```dataview
|
|
TABLE FN AS "Full Name", name, Standort, Locality, X-MANAGER AS Vorgesetzter, BDAY
|
|
FROM [[]] AND !outgoing([[]]) AND #process/contact AND "Infos/Kontakte"
|
|
FLATTEN file.frontmatter.ADR AS Address
|
|
FLATTEN Address.WORK.LOCALITY AS Locality
|
|
FLATTEN file.frontmatter.ADR.WORK.LOCALITY AS Standort
|
|
WHERE !contains(X-FORMER-ORG, [[cimt consulting AG]])
|
|
SORT location, X-MANAGER, name
|
|
```
|
|
|
|
|
|
## Ehemalige Kollegen
|
|
```dataview
|
|
TABLE ORG AS Firma, location AS Standort
|
|
FROM #process/contact
|
|
WHERE contains(X-FORMER-ORG, [[cimt consulting AG]])
|
|
SORT location, manager, name
|
|
```
|
|
|
|
## Termine
|
|
```dataview
|
|
list from [[]] and !outgoing([[]]) and "Journal"
|
|
```
|