- project tabs - commits, issues... (work in progress - see the beta version)
This commit is contained in:
parent
59ff8a176f
commit
d2f284d95d
1 changed files with 13 additions and 14 deletions
|
@ -102,31 +102,30 @@
|
||||||
</md-content>
|
</md-content>
|
||||||
</md-tab>
|
</md-tab>
|
||||||
<md-tab label="Issues">
|
<md-tab label="Issues">
|
||||||
<md-content class="md-padding">
|
<md-content class="md-padding" style="overflow:scroll;">
|
||||||
<h1 class="md-display-2">Issues</h1>
|
<h1 class="md-display-2">Issues</h1>
|
||||||
<table style="width:100%;" border = "1">
|
<table style="width:100%;" border = "1">
|
||||||
<tr>
|
<tr>
|
||||||
<th style = "width:25%;">Name</th>
|
|
||||||
<th>Title</th>
|
<th>Title</th>
|
||||||
|
<th style = "width:25%;">Name</th>
|
||||||
<th style = "width:10%;">url</th>
|
<th style = "width:10%;">url</th>
|
||||||
</tr>
|
</tr>
|
||||||
<tr ng-repeat = "member in project.members">
|
<tr ng-repeat = "issue in project.info.issues" layout-margin align="center">
|
||||||
<td align="center">
|
<!-- ng-repeat = "member in project.members" -->
|
||||||
<a ng-href="#/profile/{{member.id}}" style="text-decoration:none; color:black;">
|
|
||||||
{{member.name}}
|
|
||||||
</a>
|
|
||||||
</td>
|
|
||||||
<td align="top">
|
<td align="top">
|
||||||
<div ng-repeat = "issue in project.info.issues" layout-margin>
|
<div>
|
||||||
{{issue.title}}
|
{{issue.title}}
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<div ng-repeat = "issue in project.info.issues" layout-margin>
|
<a ng-href="#/profile/{{member.id}}" style="text-decoration:none; color:black;">
|
||||||
<a ng-href="{{issue.html_url}}" style="text-decoration:none; color:black;">
|
{{issue.user.login}}
|
||||||
{{issue.html_url}}
|
</a>
|
||||||
</a>
|
</td>
|
||||||
</div>
|
<td>
|
||||||
|
<a ng-href="{{issue.html_url}}" style="text-decoration:none; color:black;">
|
||||||
|
Link
|
||||||
|
</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
Loading…
Reference in a new issue