Skip to content

Commit 99ed480

Browse files
committed
resolved merge conflicts
2 parents 55c124d + 652e6b2 commit 99ed480

File tree

7 files changed

+230
-38
lines changed

7 files changed

+230
-38
lines changed

docs/core-concepts/issues/labels.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Labels
33
---
44

5-
# Organize work items with Labels
5+
# Tag work items with Labels
66

77
Labels are keywords or tags that you can assign to work items in order to categorize and differentiate them within your project. They are ideal for tracking components or other unique identifiers that don’t fall under the standard work item properties.
88

docs/core-concepts/issues/overview.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Work items
2+
title: Work Items
33
---
44

55
In Plane, a work item serves as the fundamental unit of work. They represent the tasks you need to accomplish to make progress Think of work items as the to-dos of your project management flow—assignable, trackable, and actionable.
+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
---
2+
title: Work Item Templates
3+
hide_title: true
4+
---
5+
6+
import Tags from '@site/src/components/Tags';
7+
8+
<div className="tag-wrapper">
9+
<h1>Create work items faster with Templates</h1>
10+
<Tags
11+
tags={[
12+
{ name: "Pro", additionalClass: "pro" }
13+
]}
14+
/>
15+
</div>
16+
17+
Work Item Templates help you standardize and streamline your workflow by providing reusable templates for common tasks. Instead of manually recreating similar work items, templates allow you to quickly apply predefined structures, saving time and ensuring consistency.
18+
19+
Templates are perfect for teams who:
20+
21+
- Handle recurring tasks with similar structures
22+
- Need to maintain consistency across work items
23+
- Want to reduce setup time for new tasks
24+
- Need to ensure team members include all required information
25+
26+
## Create work item template
27+
28+
1. Navigate to [Project Settings](https://docs.plane.so/core-concepts/projects/overview#project-settings).
29+
2. Select the **Templates** tab on the right pane.
30+
![Create work item template](https://media.docs.plane.so/templates/create-work-item-template.webp#center)
31+
3. Click the **Create template** button in the top-right corner.
32+
4. Select **Work Item template** from the options.
33+
![Add template details](https://media.docs.plane.so/templates/add-template-details.webp#center)
34+
5. Fill in the template details:
35+
- Give your template a clear, descriptive name.
36+
- Add a description explaining when and how to use this template.
37+
- Fill in any default fields you want pre-populated (title format, description,..)
38+
- Configure properties like Labels, Assignees, and Modules.
39+
6. Click **Create work item template** to save.
40+
41+
## Use work item templates
42+
Once you've created templates, you can use them whenever you create a new work item:
43+
![Use Template when creating work items](https://media.docs.plane.so/templates/use-template-work-items.webp#center)
44+
45+
1. Navigate to **Work Items** under your project.
46+
2. Click the **+** button to create a new work item.
47+
3. Select the work item type.
48+
4. Click the templates icon and choose and from available templates in the dropdown menu.
49+
3. Your new work item will be pre-populated with all the template information.
50+
4. Make any necessary adjustments to the work item.
51+
5. Click **Save**.
52+
53+
Alternatively, from the Templates settings page:
54+
55+
![Use Template in project settings](https://media.docs.plane.so/templates/use-template-in-settings.webp#center)
56+
57+
1. Find your template in the list.
58+
2. Click the **Use template** button.
59+
3. This will immediately open the new work item creation form with all template fields pre-filled.
60+
61+
## Manage Templates
62+
All your templates are accessible from Project **Settings > Templates**.
63+
![Manage templates](https://media.docs.plane.so/templates/manage-templates.webp#center)
64+
65+
From here you can:
66+
- View all existing templates
67+
- Create new templates
68+
- Use existing templates
69+
- Edit or delete templates
70+
71+
:::info
72+
Page Templates and Project Templates are on our roadmap and coming soon.
73+
:::

docusaurus.config.ts

+7
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,13 @@ const config: Config = {
6363
],
6464
],
6565

66+
stylesheets: [
67+
{
68+
href: 'https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=National+Park:[email protected]&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap',
69+
type: 'text/css',
70+
},
71+
],
72+
6673
plugins: [
6774
[
6875
"posthog-docusaurus",

sidebars.ts

+11-10
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const sidebars: SidebarsConfig = {
3434
},
3535
{
3636
type: 'category',
37-
collapsed: true,
37+
collapsed: false,
3838
label: 'Project + work tracking',
3939
items: [
4040

@@ -67,7 +67,7 @@ const sidebars: SidebarsConfig = {
6767

6868
{
6969
type: 'category',
70-
collapsed: true,
70+
collapsed: false,
7171
label: 'Project + work management',
7272
items: [
7373
'core-concepts/issues/issue-types',
@@ -81,6 +81,7 @@ const sidebars: SidebarsConfig = {
8181
'core-concepts/projects/project-overview',
8282
'workflows-and-approvals/workflows',
8383
'templates/project-templates',
84+
'templates/work-item-templates',
8485
'customers',
8586
'intake/intake-forms',
8687
'core-concepts/export',
@@ -89,7 +90,7 @@ const sidebars: SidebarsConfig = {
8990
},
9091
{
9192
type: 'category',
92-
collapsed: true,
93+
collapsed: false,
9394
label: 'Visualization',
9495
items: [
9596
'core-concepts/account/overview',
@@ -112,7 +113,7 @@ const sidebars: SidebarsConfig = {
112113

113114
{
114115
type: 'category',
115-
collapsed: true,
116+
collapsed: false,
116117
label: 'Navigation',
117118
items: [
118119
'core-concepts/power-k'
@@ -121,7 +122,7 @@ const sidebars: SidebarsConfig = {
121122

122123
{
123124
type: 'category',
124-
collapsed: true,
125+
collapsed: false,
125126
label: 'Workspace + user management',
126127
items: [
127128
'core-concepts/workspaces/overview',
@@ -134,7 +135,7 @@ const sidebars: SidebarsConfig = {
134135

135136
{
136137
type: 'category',
137-
collapsed: true,
138+
collapsed: false,
138139
label: 'Knowledge management',
139140
items: [
140141
{
@@ -150,7 +151,7 @@ const sidebars: SidebarsConfig = {
150151
},
151152
{
152153
type: 'category',
153-
collapsed: true,
154+
collapsed: false,
154155
label: 'Importers',
155156
items: [
156157
'importers/overview',
@@ -162,7 +163,7 @@ const sidebars: SidebarsConfig = {
162163
},
163164
{
164165
type: 'category',
165-
collapsed: true,
166+
collapsed: false,
166167
label: 'Integrations',
167168
items: [
168169
'integrations/about',
@@ -173,15 +174,15 @@ const sidebars: SidebarsConfig = {
173174
},
174175
{
175176
type: 'category',
176-
collapsed: true,
177+
collapsed: false,
177178
label: 'Performance',
178179
items: [
179180
'performance/hyper-mode'
180181
],
181182
},
182183
{
183184
type: 'category',
184-
collapsed: true,
185+
collapsed: false,
185186
label: 'Devices',
186187
items: [
187188
'devices/mobile',

0 commit comments

Comments
 (0)