]> source.dussan.org Git - gitea.git/commitdiff
issue label ui design
authorFuXiaoHei <fuxiaohei@hexiaz.com>
Fri, 16 May 2014 08:00:09 +0000 (16:00 +0800)
committerFuXiaoHei <fuxiaohei@hexiaz.com>
Fri, 16 May 2014 08:00:09 +0000 (16:00 +0800)
templates/base/head.tmpl
templates/issue/list.tmpl

index d3f1914a2dbcd9c2720c4dd5135dac27be0ab35c..e7759c2985ceb2408b214127a3ddd78f8f055bf3 100644 (file)
@@ -28,6 +28,7 @@
 
                <link href="/css/todc-bootstrap.min.css" rel="stylesheet" />
         <link href="/css/datepicker3.css" rel="stylesheet" />
+        <link href="/css/bootstrap-colorpicker.min.css" rel="stylesheet" />
                <link href="/css/markdown.css" rel="stylesheet" />
                <link href="/css/gogs.css" rel="stylesheet" />
 
index e66015af873121d593193cac122974129ed8d0a0..fd67d4213dfe782d588cdf77b7b9d5e5bcd48823 100644 (file)
@@ -4,13 +4,36 @@
 {{template "repo/toolbar" .}}
 <div id="body" class="container">
     <div id="issue">
-        <div class="col-md-3 filter-list">
-            <ul class="list-unstyled">
-                <li><a href="{{.RepoLink}}/issues?state={{.State}}"{{if eq .ViewType "all"}} class="active"{{end}}>All Issues <strong class="pull-right">{{..IssueStats.AllCount}}</strong></a></li>
-                <li><a href="{{.RepoLink}}/issues?type=assigned&state={{.State}}"{{if eq .ViewType "assigned"}} class="active"{{end}}>Assigned to you <strong class="pull-right">{{.IssueStats.AssignCount}}</strong></a></li>
-                <li><a href="{{.RepoLink}}/issues?type=created_by&state={{.State}}"{{if eq .ViewType "created_by"}} class="active"{{end}}>Created by you <strong class="pull-right">{{.IssueStats.CreateCount}}</strong></a></li>
-                <li><a href="{{.RepoLink}}/issues?type=mentioned&state={{.State}}"{{if eq .ViewType "mentioned"}} class="active"{{end}}>Mentioning you <strong class="pull-right">{{.IssueStats.MentionCount}}</strong></a></li>
-            </ul>
+        <div class="col-md-3 filters">
+            <div class="filter-list">
+                <ul class="list-unstyled">
+                    <li><a href="{{.RepoLink}}/issues?state={{.State}}"{{if eq .ViewType "all"}} class="active"{{end}}>All Issues <strong class="pull-right">{{..IssueStats.AllCount}}</strong></a></li>
+                    <li><a href="{{.RepoLink}}/issues?type=assigned&state={{.State}}"{{if eq .ViewType "assigned"}} class="active"{{end}}>Assigned to you <strong class="pull-right">{{.IssueStats.AssignCount}}</strong></a></li>
+                    <li><a href="{{.RepoLink}}/issues?type=created_by&state={{.State}}"{{if eq .ViewType "created_by"}} class="active"{{end}}>Created by you <strong class="pull-right">{{.IssueStats.CreateCount}}</strong></a></li>
+                    <li><a href="{{.RepoLink}}/issues?type=mentioned&state={{.State}}"{{if eq .ViewType "mentioned"}} class="active"{{end}}>Mentioning you <strong class="pull-right">{{.IssueStats.MentionCount}}</strong></a></li>
+                </ul>
+            </div>
+            <div class="label-filter">
+                <h4>Label</h4>
+                <ul class="list-unstyled">
+                    <li><a href="#"><span class="pull-right count">1</span><span class="color" style="background-color: red"></span>bug</a></li>
+                    <li><a href=""><span class="pull-right count">1</span><span class="color" style="background-color: #AAA"></span>duplicate</a></li>
+                    <li><a href=""><span class="pull-right count">1</span><span class="color" style="background-color: #0072E3"></span>enhancement</a></li>
+                </ul>
+                <button class="btn btn-default btn-block label-button">Manage Labels</button>
+                <hr/>
+                <form id="label-add-form" action="#" method="post">
+                    <h5><strong>New Label</strong></h5>
+                    <div class="input-group label-color-picker form-group">
+                        <input type="text" value="" class="form-control" name="name" required="required" id="label-name-ipt"/>
+                        <input type="hidden" value="" name="color" id="label-color-ipt"/>
+                        <span class="input-group-addon"><i></i></span>
+                    </div>
+                    <div class="form-group text-right">
+                        <button class="btn btn-default btn-sm">Create</button>
+                    </div>
+                </form>
+            </div>
         </div>
         <div class="col-md-9">
             <div class="filter-option">
         </div>
     </div>
 </div>
+<script src="/js/bootstrap-colorpicker.min.js"></script>
+<script>
+    $(function(){
+        $('.label-color-picker').colorpicker({
+            input:$('#label-color-ipt')
+        });
+    });
+</script>
 {{template "base/footer" .}}