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

Unified Diff: appengine_apps/chromium_status/templates/static_blobs_inline_list.html

Issue 778533003: Moved chromium_status to appengine/ (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 6 years 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 side-by-side diff with in-line comments
Download patch
Index: appengine_apps/chromium_status/templates/static_blobs_inline_list.html
diff --git a/appengine_apps/chromium_status/templates/static_blobs_inline_list.html b/appengine_apps/chromium_status/templates/static_blobs_inline_list.html
deleted file mode 100644
index 66cfd357e3ee9f97617c42d3dc8b726699076806..0000000000000000000000000000000000000000
--- a/appengine_apps/chromium_status/templates/static_blobs_inline_list.html
+++ /dev/null
@@ -1,23 +0,0 @@
-{% extends "base.html" %}
-
-{% block content %}
- <center>
- <h2>{{ app_name }}</h2>
- <table border="1" cellpadding="5">
- <tr bgcolor="#CCCCFF">
- <td><b>Filename</b></td>
- <td><b>Original filename</b></td>
- <td><b>Size</b></td>
- <td><b>Upload date</b></td>
- </tr>
- {% for blob in blobs %}
- <tr>
- <td>{{ blob.filename }}</td>
- <td>{{ blob.original_filename }}</td>
- <td>{{ blob.size }}</td>
- <td>{{ blob.creation|date:"D M d, H:i T " }}</td>
- </tr>
- {% endfor %}
- </table>
- </center>
-{% endblock %}

Powered by Google App Engine
This is Rietveld 408576698