Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Side by Side Diff: appengine/chromium_rietveld/new_static/components/cr-issue-inbox.html

Issue 1001723003: Create a common directory of widgets and css. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!-- Copyright (c) 2014 The Chromium Authors. All rights reserved. 1 <!-- Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 Use of this source code is governed by a BSD-style license that can be 2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. --> 3 found in the LICENSE file. -->
4 4
5 <link rel="import" href="cr-issue-inbox-section.html"> 5 <link rel="import" href="cr-issue-inbox-section.html">
6 6
7 <polymer-element name="cr-issue-inbox" attributes="issues weeks showRecentActivi ty" noscript> 7 <polymer-element name="cr-issue-inbox" attributes="issues weeks showRecentActivi ty" noscript>
8 <template> 8 <template>
9 <link rel="stylesheet" href="common.css"> 9 <link rel="stylesheet" href="../common/common.css">
10 10
11 <template if="{{ issues.draft.length }}"> 11 <template if="{{ issues.draft.length }}">
12 <h1>Issues with Drafts</h1> 12 <h1>Issues with Drafts</h1>
13 <cr-issue-inbox-section issues="{{ issues.draft }}" weeks="{{ weeks }}" showRecentActivity="{{ showRecentActivity }}"></cr-issue-inbox-section> 13 <cr-issue-inbox-section issues="{{ issues.draft }}" weeks="{{ weeks }}" showRecentActivity="{{ showRecentActivity }}"></cr-issue-inbox-section>
14 </template> 14 </template>
15 15
16 <template if="{{ issues.outgoing.length }}"> 16 <template if="{{ issues.outgoing.length }}">
17 <h1>Outgoing</h1> 17 <h1>Outgoing</h1>
18 <cr-issue-inbox-section issues="{{ issues.outgoing }}" weeks="{{ wee ks }}" showRecentActivity="{{ showRecentActivity }}"></cr-issue-inbox-section> 18 <cr-issue-inbox-section issues="{{ issues.outgoing }}" weeks="{{ wee ks }}" showRecentActivity="{{ showRecentActivity }}"></cr-issue-inbox-section>
19 </template> 19 </template>
(...skipping 12 matching lines...) Expand all
32 <h1>CCed</h1> 32 <h1>CCed</h1>
33 <cr-issue-inbox-section issues="{{ issues.cc }}" weeks="{{ weeks }}" showRecentActivity="{{ showRecentActivity }}"></cr-issue-inbox-section> 33 <cr-issue-inbox-section issues="{{ issues.cc }}" weeks="{{ weeks }}" showRecentActivity="{{ showRecentActivity }}"></cr-issue-inbox-section>
34 </template> 34 </template>
35 35
36 <template if="{{ issues.closed.length }}"> 36 <template if="{{ issues.closed.length }}">
37 <h1>Recently Closed</h1> 37 <h1>Recently Closed</h1>
38 <cr-issue-inbox-section issues="{{ issues.closed }}" weeks="{{ weeks }}" showRecentActivity="{{ showRecentActivity }}"></cr-issue-inbox-section> 38 <cr-issue-inbox-section issues="{{ issues.closed }}" weeks="{{ weeks }}" showRecentActivity="{{ showRecentActivity }}"></cr-issue-inbox-section>
39 </template> 39 </template>
40 </template> 40 </template>
41 </polymer-element> 41 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698