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

Side by Side Diff: templates/merger.html

Issue 10448057: Add refresh support to the console page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/chromium-build
Patch Set: Created 8 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « templates/console.html ('k') | tests/test_console_handler/console-expected.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <table width="96%" class="ConsoleData"> 1 <table width="96%" class="ConsoleData">
2 2
3 {#- List the master names in the console. -#} 3 {#- List the master names in the console. -#}
4 <tr> 4 <tr>
5 <td width="1%"></td> 5 <td width="1%"></td>
6 <td width="1%"></td> 6 <td width="1%"></td>
7 {%- for master in data.masters -%} 7 {%- for master in data.masters -%}
8 {%- if loop.first -%} 8 {%- if loop.first -%}
9 {%- set extraclass = 'first' -%} 9 {%- set extraclass = 'first' -%}
10 {%- elif loop.last -%} 10 {%- elif loop.last -%}
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 <td class='DevStatus {{extraclass}}'> 64 <td class='DevStatus {{extraclass}}'>
65 {%- if master in data.row_data[row]['status'] -%} 65 {%- if master in data.row_data[row]['status'] -%}
66 {{ data.row_data[row]['status'][master][category] }} 66 {{ data.row_data[row]['status'][master][category] }}
67 {%- else -%} 67 {%- else -%}
68 {{ data.category_data[master][category]|notstarted }} 68 {{ data.category_data[master][category]|notstarted }}
69 {%- endif -%} 69 {%- endif -%}
70 </td> 70 </td>
71 {%- endfor %} 71 {%- endfor %}
72 {%- endfor -%} 72 {%- endfor -%}
73 </tr> 73 </tr>
74 74
75 <tr> 75 <tr>
76 <td colspan="{{ 2 + data.category_count }}" 76 <td colspan="{{ 2 + data.category_count }}"
77 class="DevComment {{ extraclass }}"> 77 class="DevComment {{ extraclass }}">
78 {{ data.row_data[row]['comment'] }} 78 {{ data.row_data[row]['comment'] }}
79 </td> 79 </td>
80 </tr> 80 </tr>
81 81
82 {%- if 'details' in data.row_data[row] -%} 82 {%- if 'details' in data.row_data[row] -%}
83 <tr> 83 <tr>
84 <td colspan="{{ 2 + data.category_count }}" 84 <td colspan="{{ 2 + data.category_count }}"
85 class="DevDetails {{ extraclass }}"> 85 class="DevDetails {{ extraclass }}">
86 {{ data.row_data[row]['details'] }} 86 {{ data.row_data[row]['details'] }}
87 </td> 87 </td>
88 </tr> 88 </tr>
89 {%- endif -%} 89 {%- endif -%}
90 <tr class='DevStatusSpacing'></tr> 90 <tr class='DevStatusSpacing'></tr>
91 {%- endfor %} 91 {%- endfor %}
92 </table> 92 </table>
OLDNEW
« no previous file with comments | « templates/console.html ('k') | tests/test_console_handler/console-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698