panel : add project type
This commit is contained in:
parent
483c3cc758
commit
4e2757ae3a
3 changed files with 59 additions and 2 deletions
|
|
@ -35,6 +35,13 @@ tabs:
|
||||||
required: true
|
required: true
|
||||||
- width: 1/3
|
- width: 1/3
|
||||||
fields:
|
fields:
|
||||||
|
projectType:
|
||||||
|
label: Type de projet
|
||||||
|
type: select
|
||||||
|
options:
|
||||||
|
dtp: Design to pack
|
||||||
|
morphoz: Morphoz
|
||||||
|
other: autre
|
||||||
client:
|
client:
|
||||||
type: pages
|
type: pages
|
||||||
multiple: false
|
multiple: false
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ title: Projets
|
||||||
|
|
||||||
tabs:
|
tabs:
|
||||||
contentTab:
|
contentTab:
|
||||||
label: Contenu
|
label: Tous les projets
|
||||||
columns:
|
columns:
|
||||||
- width: 1/1
|
- width: 1/1
|
||||||
sections:
|
sections:
|
||||||
|
|
@ -24,6 +24,57 @@ tabs:
|
||||||
headline: Archivés
|
headline: Archivés
|
||||||
query: user.archivedProjects
|
query: user.archivedProjects
|
||||||
sortBy: modified desc
|
sortBy: modified desc
|
||||||
|
dtpProjects:
|
||||||
|
label: DTP
|
||||||
|
columns:
|
||||||
|
- width: 1/1
|
||||||
|
sections:
|
||||||
|
listedDtp:
|
||||||
|
extends: sections/projects
|
||||||
|
headline: En cours
|
||||||
|
query: user.currentProjects.filterBy('projectType', 'dtp')
|
||||||
|
sortBy: modified desc
|
||||||
|
- width: 1/1
|
||||||
|
sections:
|
||||||
|
unlistedDtp:
|
||||||
|
extends: sections/projects
|
||||||
|
headline: Archivés
|
||||||
|
query: user.archivedProjects.filterBy('projectType', 'dtp')
|
||||||
|
sortBy: modified desc
|
||||||
|
morphozProjects:
|
||||||
|
label: Morphoz
|
||||||
|
columns:
|
||||||
|
- width: 1/1
|
||||||
|
sections:
|
||||||
|
listedMorphoz:
|
||||||
|
extends: sections/projects
|
||||||
|
headline: En cours
|
||||||
|
query: user.currentProjects.filterBy('projectType', 'morphoz')
|
||||||
|
sortBy: modified desc
|
||||||
|
- width: 1/1
|
||||||
|
sections:
|
||||||
|
unlistedMorphoz:
|
||||||
|
extends: sections/projects
|
||||||
|
headline: Archivés
|
||||||
|
query: user.archivedProjects.filterBy('projectType', 'morphoz')
|
||||||
|
sortBy: modified desc
|
||||||
|
otherProjects:
|
||||||
|
label: Autres
|
||||||
|
columns:
|
||||||
|
- width: 1/1
|
||||||
|
sections:
|
||||||
|
listedOther:
|
||||||
|
extends: sections/projects
|
||||||
|
headline: En cours
|
||||||
|
query: user.currentProjects.filterBy('projectType', 'other')
|
||||||
|
sortBy: modified desc
|
||||||
|
- width: 1/1
|
||||||
|
sections:
|
||||||
|
unlistedOther:
|
||||||
|
extends: sections/projects
|
||||||
|
headline: Archivés
|
||||||
|
query: user.archivedProjects.filterBy('projectType', 'other')
|
||||||
|
sortBy: modified desc
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
label: Réglages
|
label: Réglages
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,6 @@ tabs:
|
||||||
headline: Archivés
|
headline: Archivés
|
||||||
query: user.archivedProjects
|
query: user.archivedProjects
|
||||||
sortBy: modified desc
|
sortBy: modified desc
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
label: Réglages
|
label: Réglages
|
||||||
icon: cog
|
icon: cog
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue