پودمان:WorkInfoBox/Data/Layouts: تفاوت میان نسخهها
ظاهر
جزبدون خلاصۀ ویرایش |
جزبدون خلاصۀ ویرایش |
||
| خط ۱: | خط ۱: | ||
local layouts = { | local layouts = { | ||
default = { | |||
{ | |||
title = 'اطلاعات اثر', | |||
fields = { | |||
'title', | |||
-- 'image', -- حذف شد | |||
'type', | |||
'creator', | |||
'year' | |||
} | |||
} | |||
}, | |||
painting = { | |||
{ | |||
title = 'اطلاعات اصلی', | |||
fields = { | |||
'title', | |||
-- 'image', -- حذف شد | |||
'type', | |||
'creator', | |||
'year' | |||
} | |||
}, | |||
{ | |||
title = 'مشخصات اثر', | |||
fields = { | |||
'style', | |||
'school', | |||
'subject', | |||
'material', | |||
'dimensions' | |||
} | |||
}, | |||
{ | |||
title = 'محل نگهداری', | |||
fields = { | |||
'location', | |||
'owner' | |||
} | |||
} | |||
}, | |||
sculpture = { | |||
{ | |||
title = 'اطلاعات اصلی', | |||
fields = { | |||
'title', | |||
-- 'image', -- حذف شد | |||
'type', | |||
'creator', | |||
'year' | |||
} | |||
}, | |||
{ | |||
title = 'مشخصات اثر', | |||
fields = { | |||
'style', | |||
'material', | |||
'dimensions' | |||
} | |||
}, | |||
{ | |||
title = 'محل نگهداری', | |||
fields = { | |||
'location', | |||
'owner' | |||
} | |||
} | |||
}, | |||
film = { | |||
{ | |||
title = 'اطلاعات کلی', | |||
fields = { | |||
'title', | |||
-- 'image', -- حذف شد | |||
'type', | |||
'creator', | |||
'year' | |||
} | |||
}, | |||
{ | |||
title = 'عوامل فیلم', | |||
fields = { | |||
'producer', | |||
'executive_producer', | |||
'production_company', | |||
'writer', | |||
'screenplay', | |||
'cast', | |||
'music', | |||
'cinematography', | |||
'editor', | |||
'distributor' | |||
} | |||
}, | |||
{ | |||
title = 'مشخصات فیلم', | |||
fields = { | |||
'subject', | |||
'style', | |||
'runtime', | |||
'country', | |||
'language', | |||
'budget' | |||
} | |||
} | |||
}, | |||
film = { | |||
}, | |||
book = { | |||
{ | |||
title = 'اطلاعات اصلی', | |||
fields = { | |||
'title', | |||
-- 'image', -- حذف شد | |||
'type', | |||
'creator', | |||
'year' | |||
} | |||
}, | |||
{ | |||
title = 'مشخصات کتاب', | |||
fields = { | |||
'subject', | |||
'material' | |||
} | |||
} | |||
} | |||
} | } | ||
return layouts | return layouts | ||
نسخهٔ کنونی تا ۱۷ ژوئیهٔ ۲۰۲۶، ساعت ۲۰:۵۸
توضیحات این پودمان میتواند در پودمان:WorkInfoBox/Data/Layouts/توضیحات قرار گیرد.
local layouts = {
default = {
{
title = 'اطلاعات اثر',
fields = {
'title',
-- 'image', -- حذف شد
'type',
'creator',
'year'
}
}
},
painting = {
{
title = 'اطلاعات اصلی',
fields = {
'title',
-- 'image', -- حذف شد
'type',
'creator',
'year'
}
},
{
title = 'مشخصات اثر',
fields = {
'style',
'school',
'subject',
'material',
'dimensions'
}
},
{
title = 'محل نگهداری',
fields = {
'location',
'owner'
}
}
},
sculpture = {
{
title = 'اطلاعات اصلی',
fields = {
'title',
-- 'image', -- حذف شد
'type',
'creator',
'year'
}
},
{
title = 'مشخصات اثر',
fields = {
'style',
'material',
'dimensions'
}
},
{
title = 'محل نگهداری',
fields = {
'location',
'owner'
}
}
},
film = {
{
title = 'اطلاعات کلی',
fields = {
'title',
-- 'image', -- حذف شد
'type',
'creator',
'year'
}
},
{
title = 'عوامل فیلم',
fields = {
'producer',
'executive_producer',
'production_company',
'writer',
'screenplay',
'cast',
'music',
'cinematography',
'editor',
'distributor'
}
},
{
title = 'مشخصات فیلم',
fields = {
'subject',
'style',
'runtime',
'country',
'language',
'budget'
}
}
},
book = {
{
title = 'اطلاعات اصلی',
fields = {
'title',
-- 'image', -- حذف شد
'type',
'creator',
'year'
}
},
{
title = 'مشخصات کتاب',
fields = {
'subject',
'material'
}
}
}
}
return layouts