Ma team : {{team.name}}
{{/daikoku-owned-teams}}
```
## daikoku-owned-team
`parameters`:
- The team ID, string value expected"
```html
{{#daikoku-owned-team "{{teamId}}"}}
Mon team : {{team.name}}
{{/daikoku-owned-team}}
```
## daikoku-json-owned-teams
```html
{{daikoku-json-owned-teams}}
```
## daikoku-json-owned-team
`parameters`:
- The Team ID, String value expected
```html
{{#daikoku-json-owned-team "{{teamId}}"}}
{{/daikoku-json-owned-team}}
```
## tenant
```html
{{tenant.name}} - {{tenant.style.description}}
```
## is_admin
```html
{{is_admin}}
```
## connected
```html
{{connected}}
```
## user
When you have an user returned from directive, you can use the following fields
- `name`
- `email`
- `_id`
- `_humandReadableId`
- `picture`
- `isDaikokuAdmin`
- `starredApis`
```html
{{user.name}} - {{user.email}}
```
## request
```html
{{request.path}} - {{request.method}} - {{request.headers}}
```
## daikoku-css
```html
{{daikoku-css}}
```
## for
`parameters`:
- the fieldname used in the helper content
```
{{#for '{{team.users}}' field='myuser' }}
{{myuser.userId}}
{{/for}}
```
## size
```html
{{size '{{team.users}}'}}
```
## ifeq
```html
{{#ifeq "{{plan.type}}" "FreeWithoutQuotas"}}
You'll pay nothing and do whatever you want
{{/ifeq}}
```
## ifnoteq
```html
{{#ifnoteq "{{plan.type}}" "FreeWithoutQuotas"}}
You'll pay nothing and do whatever you want
{{/ifnoteq}}
```
## getOrElse
```html
{{getOrElse "{{plan.customName}}" "Un plan"}}
```
## translate
```html
{{translate 'Logout'}}
```
## daikoku-path-param
`parameters`:
- the position of the path params
```html
{{daikoku-path-param '0'}}
```
## daikoku-query-param
`parameters`:
- the name of the query param
```html
{{daikoku-query-param 'my-query-param'}}
```
## daikoku-template-wrapper
`parameters`:
- Block path
- List of key=value usable in content
```html
{{#daikoku-template-wrapper '' ="" }}
{{/daikoku-template-wrapper}}"
```
## daikoku-apis
```html
{{#daikoku-apis}}
Api : {{api.name}}
{{/daikoku-apis}}
```
## daikoku-api
`parameters`:
- API id, String value expected
```html
{{#daikoku-api "{{apiId}}" version="1.0.0"}}
Mon api : {{api.name}}
{{/daikoku-api}}"
```
## daikoku-json-apis
```html
{{daikoku-json-apis}}
```
## daikoku-json-api
`parameters`:
- API Id, String value expected
```html
{{#daikoku-json-api "{{apiId}}" version="1.0.0"}}
{{/daikoku-json-api}}
```
## daikoku-teams
```html
{{#daikoku-teams}}
Team : {{team.name}}
{{/daikoku-teams}}
```
## daikoku-team
`parameters`:
- Team Id, String value expected
```html
{{#daikoku-team "{{}}"}}
My team : {{team.name}}
{{/daikoku-team}}
```
## daikoku-json-teams
```html
{{daikoku-json-teams}}
```
## daikoku-json-team
`parameters`:
- Team Id, String value expected
```html
{{#daikoku-json-team "{{}}"}}
{{/daikoku-json-team}}
```
## daikoku-documentations
`parameters`:
- API id, String value expected
```html
{{#daikoku-documentations "{{}}"}}
{{documentation.title}}
{{/daikoku-documentations}}
```
## daikoku-documentations-page
`parameters`:
- API ID, String value expected
- Page ID as String value
```html
{{#daikoku-documentations-page "" page=""}}
{{documentation.content}}
{{/daikoku-documentations-page}}
```
## daikoku-documentations-page-id
`parameters`:
- Team ID, String value expected
- The named page parameter corresponding to the id of the expected page
```html
{{#daikoku-documentations-page-id "" page=""}}
{{content}}
{{/daikoku-documentations-page-id}}"
```
## daikoku-plans
`parameters`:
- API ID
```html
{{#daikoku-plans ""}}
{{plan.type}}
{{/daikoku-plans}}
```
# License
This project is licensed under the Apache 2.0 license with the LLVM exception.
### Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in this project by you, as defined in the Apache-2.0 license,
shall be licensed as above, without any additional terms or conditions.