Show the select 'assigned_to'
parent
0f44a6496b
commit
7b0741f863
|
@ -51,6 +51,7 @@ CreateEditTaskDirective = ($repo, $model, $rs, $rootScope) ->
|
|||
user_story: usId
|
||||
is_archived: false
|
||||
status: $scope.project.default_task_status
|
||||
assigned_to: null
|
||||
}
|
||||
isNew = true
|
||||
editDescription($scope, $el)
|
||||
|
|
|
@ -7,11 +7,10 @@ form
|
|||
fieldset
|
||||
select(ng-model="task.status", ng-options="s.id as s.name for s in taskStatusList",
|
||||
placeholder="Task status")
|
||||
// TODO: Assigned to
|
||||
//fieldset
|
||||
// select(ng-model="task.assigned_to", ng-options="s.id as s.full_name for s in userList",
|
||||
// placeholder="Assigned to")
|
||||
// option(value)-------
|
||||
fieldset
|
||||
select(ng-model="task.assigned_to", ng-options="s.id as s.full_name_display for s in users",
|
||||
placeholder="Assigned to")
|
||||
option(value="") Unassigned
|
||||
fieldset
|
||||
input(type="text", placeholder="Tags", tg-tags, ng-model="task.tags")
|
||||
fieldset
|
||||
|
|
Loading…
Reference in New Issue