2017-12-15 00:23:45 +09:00
|
|
|
extends ../../layout.pug
|
|
|
|
include ../mixins
|
|
|
|
|
|
|
|
block meta
|
2017-12-17 01:41:22 +09:00
|
|
|
link(rel="stylesheet" href="/assets/api/entities/style.css")
|
2017-12-15 00:23:45 +09:00
|
|
|
|
|
|
|
block main
|
|
|
|
h1= name
|
|
|
|
|
2017-12-15 06:41:57 +09:00
|
|
|
p#desc= desc[lang] || desc['ja']
|
2017-12-15 00:23:45 +09:00
|
|
|
|
|
|
|
section
|
2017-12-17 14:35:30 +09:00
|
|
|
h2 %i18n:docs.api.entities.properties%
|
2017-12-15 00:23:45 +09:00
|
|
|
+propTable(props)
|
|
|
|
|
|
|
|
if propDefs
|
|
|
|
each propDef in propDefs
|
|
|
|
section(id= propDef.name)
|
|
|
|
h3= propDef.name
|
|
|
|
+propTable(propDef.params)
|