[Backport] Fixing total sprints and points fields
parent
987ab06b0a
commit
bcc9c3ad81
|
@ -73,7 +73,6 @@ div.wrapper(
|
||||||
ng-model="project.description"
|
ng-model="project.description"
|
||||||
data-required="true"
|
data-required="true"
|
||||||
)
|
)
|
||||||
|
|
||||||
fieldset
|
fieldset
|
||||||
label(for="tags") {{ 'ADMIN.PROJECT_PROFILE.TAGS' | translate }}
|
label(for="tags") {{ 'ADMIN.PROJECT_PROFILE.TAGS' | translate }}
|
||||||
div.tags-block(
|
div.tags-block(
|
||||||
|
@ -81,6 +80,31 @@ div.wrapper(
|
||||||
tg-lb-tag-line
|
tg-lb-tag-line
|
||||||
ng-model="project.tags"
|
ng-model="project.tags"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
fieldset
|
||||||
|
label(for="project-sprints") {{ 'ADMIN.PROJECT_PROFILE.NUMBER_SPRINTS' | translate }}
|
||||||
|
input(
|
||||||
|
type="number"
|
||||||
|
name="total_milestones"
|
||||||
|
min="0"
|
||||||
|
placeholder="{{'ADMIN.PROJECT_PROFILE.NUMBER_SPRINTS' | translate}}"
|
||||||
|
id="project-sprints"
|
||||||
|
ng-model="project.total_milestones"
|
||||||
|
data-type="digits"
|
||||||
|
)
|
||||||
|
|
||||||
|
fieldset
|
||||||
|
label(for="total-story-points") {{ 'ADMIN.PROJECT_PROFILE.NUMBER_US_POINTS' | translate }}
|
||||||
|
input(
|
||||||
|
type="number"
|
||||||
|
name="total_story_points"
|
||||||
|
min="0"
|
||||||
|
placeholder="{{'ADMIN.PROJECT_PROFILE.NUMBER_US_POINTS' | translate}}"
|
||||||
|
id="total-story-points"
|
||||||
|
ng-model="project.total_story_points"
|
||||||
|
data-type="digits"
|
||||||
|
)
|
||||||
|
|
||||||
fieldset.looking-for-people
|
fieldset.looking-for-people
|
||||||
.looking-for-people-selector
|
.looking-for-people-selector
|
||||||
span {{ 'ADMIN.PROJECT_PROFILE.RECRUITING' | translate }}
|
span {{ 'ADMIN.PROJECT_PROFILE.RECRUITING' | translate }}
|
||||||
|
|
Loading…
Reference in New Issue