Custom Fields Addition to the project templates not to the only one project

Hey guys hope you are doing well

I was working with the taiga tool and I want to add custom fields not to only one project but to the whole project templates, I was adding custom fields in project templates but it kept giving me errors.

ANyone who can help me with this, It means a lot

Hi @William_Mitiku

I modify the current scrum template and is working as expected. Custom attributes are created when I add a new project.

I use the admin panel to modify the Scrum template with this:

[
    {
        "name":"architecto",
        "type":"date",
        "order":1,
        "description":"molestias modi fuga dicta voluptatem eveniet error ex placeat"
    },
    {
        "name":"deserunt exercitationem distinctio",
        "type":"url",
        "order":1,
        "description":"soluta illum inventore exercitationem provident adipisci error excepturi eum vel eveniet"
    },
    {
        "name":"nam",
        "type":"multiline",
        "order":1,
        "description":"accusamus aspernatur iste"
    },
    {
        "name":"sunt",
        "type":"richtext",
        "order":1,
        "description":"hic ad perferendis incidunt similique perspiciatis obcaecati commodi nesciunt doloremque"
    },
    {
        "name":"vel corrupti tempore",
        "type":"number",
        "order":1,
        "description":"porro earum itaque quae sit"
    }
]

I hope this can help.

Best regards.

Thnks that was really helpfull

1 Like

@david.barragan how can we make it a drop-down, i was trying to do one but I think there is an error with the JSON structure of mine. Can you help me with that?

Well, I’ve found a bug testing it. The json should be something like this:


    {
        "name":"Test dropdown",
        "type":"dropdown",
        "order":1,
        "description":"This is a dropdown example",
        "extra":[
            "option 1",
            "option 2",
            "option 3"
        ]
    }

But it is not working. So I’ve created a bug in Taiga I hope we resolve as soon as possible for the next release.

Sorry for the inconvenience.

Okay actually I have tried exactly like that, thanks for the fast reply @david.barragan

1 Like

You are welcome, @William_Mitiku.