編集の要約なし |
編集の要約なし |
||
| 1行目: | 1行目: | ||
```wiki | |||
<noinclude> | <noinclude> | ||
{{#cargo_declare: | {{#cargo_declare: | ||
_table=Areas | _table=Areas | ||
|area_id=Integer | |area_id=Integer | ||
|name=String | |name=String | ||
| 22行目: | 22行目: | ||
{{#cargo_store: | {{#cargo_store: | ||
_table=Areas | _table=Areas | ||
|area_id={{{area_id|}}} | |area_id={{{area_id|}}} | ||
|name={{{name|}}} | |name={{{name|}}} | ||
| 38行目: | 37行目: | ||
<div class="area-page"> | <div class="area-page"> | ||
<!-- ============================= --> | |||
<!-- 基本情報 --> | |||
<!-- ============================= --> | |||
<div class="area-infobox"> | <div class="area-infobox"> | ||
| 81行目: | 84行目: | ||
</div> | </div> | ||
<!-- ============================= --> | |||
<!-- 概要 --> | |||
<!-- ============================= --> | |||
{{#if:{{{description|}}} | {{#if:{{{description|}}} | ||
| 91行目: | 98行目: | ||
<!-- | <!-- ============================= --> | ||
<!-- | <!-- 上位地域 --> | ||
<!-- | <!-- ============================= --> | ||
{{#ifexpr: {{{parent_id|0}}} > 0 | {{#ifexpr:{{{parent_id|0}}} > 0 | ||
| | | | ||
== 上位地域 == | == 上位地域 == | ||
| 101行目: | 108行目: | ||
{{#cargo_query: | {{#cargo_query: | ||
tables=Areas | tables=Areas | ||
|fields=_pageName | |fields=_pageName,name | ||
|where=area_id={{{parent_id}}} | |where=area_id={{{parent_id}}} | ||
|format=template | |format=template | ||
| 111行目: | 118行目: | ||
<!-- ===================================== --> | <!-- ================================================= --> | ||
<!-- | <!-- 都道府県 --> | ||
<!-- ===================================== --> | <!-- ================================================= --> | ||
{{#ifeq:{{{area_type|}}}|prefecture | |||
| | |||
== {{{name|}}}の地域 == | |||
== | === 特別区 === | ||
{{#cargo_query: | {{#cargo_query: | ||
tables=Areas | tables=Areas | ||
|fields=_pageName | |fields=_pageName,name | ||
|where=parent_id={{{area_id}}} | |where=parent_id={{{area_id}}} AND area_type='special_ward' | ||
|order by=name ASC | |order by=name ASC | ||
|format=template | |format=template | ||
|template=AreaChildDisplay | |template=AreaChildDisplay | ||
|default= | |default= | ||
}} | }} | ||
=== 市 === | |||
== {{{name|}}} | {{#cargo_query: | ||
tables=Areas | |||
|fields=_pageName,name | |||
|where=parent_id={{{area_id}}} AND area_type='city' | |||
|order by=name ASC | |||
|format=template | |||
|template=AreaChildDisplay | |||
|default= | |||
}} | |||
=== 町 === | |||
{{#cargo_query: | |||
tables=Areas | |||
|fields=_pageName,name | |||
|where=parent_id={{{area_id}}} AND area_type='town' | |||
|order by=name ASC | |||
|format=template | |||
|template=AreaChildDisplay | |||
|default= | |||
}} | |||
=== 村 === | |||
{{#cargo_query: | |||
tables=Areas | |||
|fields=_pageName,name | |||
|where=parent_id={{{area_id}}} AND area_type='village' | |||
|order by=name ASC | |||
|format=template | |||
|template=AreaChildDisplay | |||
|default= | |||
}} | |||
| | |||
}} | |||
<!-- ================================================= --> | |||
<!-- 市 --> | |||
<!-- ================================================= --> | |||
{{#ifeq:{{{area_type|}}}|city | |||
| | |||
== {{{name|}}}の行政区 == | |||
{{#cargo_query: | |||
tables=Areas | |||
|fields=_pageName,name | |||
|where=parent_id={{{area_id}}} AND area_type='ward' | |||
|order by=name ASC | |||
|format=template | |||
|template=AreaChildDisplay | |||
|default=行政区はありません。 | |||
}} | |||
| | |||
}} | |||
<!-- ================================================= --> | |||
<!-- 特別区 --> | |||
<!-- ================================================= --> | |||
{{# | {{#ifeq:{{{area_type|}}}|special_ward | ||
| | |||
| | == {{{name|}}}の祭り・イベント == | ||
{{#cargo_query: | {{#cargo_query: | ||
tables=Festivals | tables=Festivals | ||
|fields=_pageName | |fields=_pageName,name,start_date,end_date,festival_type | ||
|where= | |where=city='{{{name}}}' | ||
|order by=start_date ASC | |order by=start_date ASC | ||
|format=template | |format=template | ||
| 148行目: | 225行目: | ||
}} | }} | ||
| | | | ||
}} | |||
<!-- ================================================= --> | |||
<!-- 行政区 --> | |||
<!-- ================================================= --> | |||
{{#ifeq:{{{area_type|}}}|ward | |||
| | |||
== {{{name|}}}の祭り・イベント == | |||
{{#cargo_query: | {{#cargo_query: | ||
tables=Festivals | tables=Festivals | ||
|fields=_pageName | |fields=_pageName,name,start_date,end_date,festival_type | ||
|where= | |where=town='{{{name}}}' | ||
|order by=start_date ASC | |order by=start_date ASC | ||
|format=template | |format=template | ||
| 160行目: | 248行目: | ||
}} | }} | ||
| | | | ||
}} | |||
<!-- ================================================= --> | |||
<!-- 町 --> | |||
<!-- ================================================= --> | |||
{{#ifeq:{{{area_type|}}}|town | |||
| | |||
== {{{name|}}}の祭り・イベント == | |||
{{#cargo_query: | {{#cargo_query: | ||
tables=Festivals | tables=Festivals | ||
|fields=_pageName | |fields=_pageName,name,start_date,end_date,festival_type | ||
|where=city='{{{name}}}' | |where=city='{{{name}}}' | ||
|order by=start_date ASC | |order by=start_date ASC | ||
| 172行目: | 271行目: | ||
}} | }} | ||
| | | | ||
}} | |||
<!-- ================================================= --> | |||
<!-- 村 --> | |||
<!-- ================================================= --> | |||
{{#ifeq:{{{area_type|}}}|village | |||
| | |||
== {{{name|}}}の祭り・イベント == | |||
{{#cargo_query: | {{#cargo_query: | ||
tables=Festivals | tables=Festivals | ||
|fields=_pageName | |fields=_pageName,name,start_date,end_date,festival_type | ||
|where= | |where=city='{{{name}}}' | ||
|order by=start_date ASC | |order by=start_date ASC | ||
|format=template | |format=template | ||
| 184行目: | 294行目: | ||
}} | }} | ||
| | | | ||
}} | |||
<!-- ================================================= --> | |||
<!-- 都道府県の祭り --> | |||
<!-- ================================================= --> | |||
{{#ifeq:{{{area_type|}}}|prefecture | |||
| | |||
== {{{name|}}}の祭り・イベント == | |||
{{#cargo_query: | {{#cargo_query: | ||
tables=Festivals | tables=Festivals | ||
|fields=_pageName | |fields=_pageName,name,start_date,end_date,festival_type | ||
|where= | |where=prefecture='{{{name}}}' | ||
|order by=start_date ASC | |order by=start_date ASC | ||
|format=template | |format=template | ||
| 196行目: | 317行目: | ||
}} | }} | ||
| | | | ||
}} | |||
<!-- ================================================= --> | |||
<!-- 市の祭り --> | |||
<!-- ================================================= --> | |||
{{#ifeq:{{{area_type|}}}|city | |||
| | |||
== {{{name|}}}の祭り・イベント == | |||
{{#cargo_query: | {{#cargo_query: | ||
tables=Festivals | tables=Festivals | ||
|fields=_pageName | |fields=_pageName,name,start_date,end_date,festival_type | ||
|where=city='{{{name}}}' | |where=city='{{{name}}}' | ||
|order by=start_date ASC | |order by=start_date ASC | ||
| 208行目: | 340行目: | ||
}} | }} | ||
| | |||
}} | }} | ||
<!-- | <!-- ============================= --> | ||
<!-- 地図 --> | <!-- 地図 --> | ||
<!-- | <!-- ============================= --> | ||
{{#if:{{{latitude|}}} | {{#if:{{{latitude|}}} | ||
| 238行目: | 371行目: | ||
<!-- | <!-- ============================= --> | ||
<!-- | <!-- SEO説明 --> | ||
<!-- | <!-- ============================= --> | ||
{{#if:{{{seo_description|}}} | {{#if:{{{seo_description|}}} | ||
| 253行目: | 386行目: | ||
</includeonly> | </includeonly> | ||
``` | |||