@@ -119,6 +119,7 @@ <h2>Projects</h2>
119
119
< th > Type</ th >
120
120
< th > Owner</ th >
121
121
< th > Copilot</ th >
122
+ < th data-type ="date "> Created Date</ th >
122
123
< th data-type ="date "> Submit Date</ th >
123
124
< th > Current Status</ th >
124
125
< th > Current Work Step</ th >
@@ -137,6 +138,7 @@ <h2>Projects</h2>
137
138
< td > {{proj.id}}</ td >
138
139
< td > {{proj.projectType }}</ td >
139
140
< td >
141
+ <!-- link to private profiles -->
140
142
< a ng-href ="{{ proj.owner.handle | tcPrivateProfileLink }} ">
141
143
<!-- In case the owner's member object has not been found,
142
144
we show his ID as the fallback. -->
@@ -145,6 +147,7 @@ <h2>Projects</h2>
145
147
</ a >
146
148
</ td >
147
149
< td >
150
+ <!-- link to private profiles -->
148
151
< a data-ng-if ="proj.copilotId && proj.copilotId !== 'unassigned' " ng-href ="{{ proj.copilot.handle | tcPrivateProfileLink}} ">
149
152
<!-- In case the copilot's member object has not been
150
153
found, we show his ID as the fallback. -->
@@ -153,6 +156,10 @@ <h2>Projects</h2>
153
156
</ a >
154
157
{{proj.copilotId === 'unassigned' ? proj.copilotId : ''}}
155
158
</ td >
159
+ < td >
160
+ <!-- add 'created date' column -->
161
+ {{ proj.createdAt | fmtDate: true }}
162
+ </ td >
156
163
< td >
157
164
<!-- display submitted date column
158
165
don't supply `true` to fmtDate as second argument, if you want previous behavior
0 commit comments