OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/public/templates/work_packages/tabs/relations.html

58 lines
3.0 KiB

<div class="detail-panel-description">
<div class="detail-panel-description-content">
<work-package-relations title="{{ I18n.t('js.relation_labels.parent') }}"
handler="wpParent"
button-title="{{ I18n.t('js.relation_buttons.changeParent') }}"
button-icon="<i class='icon-hierarchy icon-edit'></i>">
</work-package-relations>
<work-package-relations title="{{ I18n.t('js.relation_labels.children') }}"
handler="wpChildren"
button-title="{{ I18n.t('js.relation_buttons.addChild') }}"
button-icon="<i class='icon-hierarchy icon-add'></i>">
</work-package-relations>
<work-package-relations title="{{ I18n.t('js.relation_labels.relatedTo') }}"
handler="relatedTo"
button-title="{{ I18n.t('js.relation_buttons.addRelatedTo') }}"
button-icon="<i class='icon-hierarchy icon-add'></i>">
</work-package-relations>
<work-package-relations title="{{ I18n.t('js.relation_labels.duplicates') }}"
handler="duplicates"
button-title="{{ I18n.t('js.relation_buttons.addDuplicates') }}"
button-icon="<i class='icon-hierarchy icon-add'></i>">
</work-package-relations>
<work-package-relations title="{{ I18n.t('js.relation_labels.duplicated') }}"
handler="duplicated"
button-title="{{ I18n.t('js.relation_buttons.addDuplicatedBy') }}"
button-icon="<i class='icon-hierarchy icon-add'></i>">
</work-package-relations>
<work-package-relations title="{{ I18n.t('js.relation_labels.blocks') }}"
handler="blocks"
button-title="{{ I18n.t('js.relation_buttons.addBlocks') }}"
button-icon="<i class='icon-hierarchy icon-add'></i>">
</work-package-relations>
<work-package-relations title="{{ I18n.t('js.relation_labels.blocked') }}"
handler="blocked"
button-title="{{ I18n.t('js.relation_buttons.addBlockedBy') }}"
button-icon="<i class='icon-hierarchy icon-add'></i>">
</work-package-relations>
<work-package-relations title="{{ I18n.t('js.relation_labels.precedes') }}"
handler="precedes"
button-title="{{ I18n.t('js.relation_buttons.addPrecedes') }}"
button-icon="<i class='icon-hierarchy icon-add'></i>">
</work-package-relations>
<work-package-relations title="{{ I18n.t('js.relation_labels.follows') }}"
handler="follows"
button-title="{{ I18n.t('js.relation_buttons.addFollows') }}"
button-icon="<i class='icon-hierarchy icon-add'></i>">
</work-package-relations>
</div>
</div>