Creating Custom Tags

Is there an easy way to create “custom tags”?

I would like to add tags for actions taken on the issues like, remediated, accepted, etc.

Thanks…

Hi @baka, Yes! Here’s a link to the pro guide about custom tags: Tagging issues | Dradis Pro Help

Try the following steps:

<?xml version="1.0" encoding="UTF-8"?>
	<dradis-template version="1">
		<nodes></nodes>
		<issues></issues>
		<methodologies></methodologies>
		<categories></categories>
		<tags>
			<tag><id>1</id><name>!9467bd_critical</name><taggings></taggings></tag>
			<tag><id>2</id><name>!d62728_high</name><taggings></taggings></tag>
			<tag><id>3</id><name>!ff7f0e_medium</name><taggings></taggings></tag>
			<tag><id>4</id><name>!6baed6_low</name><taggings></taggings></tag>
			<tag><id>5</id><name>!2ca02c_info</name><taggings></taggings></tag>
		</tags>
	</dradis-template>
  • Edit those tag names as needed or add new ones. Build the tag by using the following format for the Tags field value:
    ![HEX]_[NAME]. So, !9467bd_critical creates a purple tag with the Critical label.

  • Save the XML file, then upload back into your Dradis project as Template: Importing and exporting projects | Dradis Pro Help

Give it a try and let us know how it goes!