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

Side by Side Diff: chrome/common/extensions/docs/server/app_known_issues_template.html

Issue 10885049: Extensions Docs Server: KILL BUILD.PY (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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
OLDNEW
(Empty)
1 <h3>Open known issues</h3>
2 <ul>
3 {% for issue in open_issues %}
4 <li><a href="http://code.google.com/p/chromium/issues/detail?id={{ issue.id }} ">{{ issue.title|escape }}</a></li>
5 {% endfor %}
6 </ul>
7
8 <h3>Recently closed known issues</h3>
9 <ul>
10 {% for issue in closed_issues %}
11 <li><a href="http://code.google.com/p/chromium/issues/detail?id={{ issue.id }} ">{{ issue.title|escape }}</a></li>
12 {% endfor %}
13 </ul>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698