summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorGuilherme Salgado <guilherme.salgado@linaro.org>2011-06-10 13:45:05 -0300
committerGuilherme Salgado <guilherme.salgado@linaro.org>2011-06-10 13:45:05 -0300
commit0118ee25e5e713ac70b395326407cc0cce70adfa (patch)
treee20b17e09362d31dc588dcfe74ab1a5586bf2bc2 /templates
parentf6bef8a2081cdd04b5ddcd241fd2400e1cbb3431 (diff)
A few trivial theming fixes and adding a template that should've been added in the previous commit
Diffstat (limited to 'templates')
-rw-r--r--templates/base.html4
-rw-r--r--templates/patchmetrics/non-linaro.html20
2 files changed, 22 insertions, 2 deletions
diff --git a/templates/base.html b/templates/base.html
index 8f348e5..cf0b99a 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -12,8 +12,8 @@
<body>
<div id="title">
<h1 style="float: left;">
- <a
- href="{% url patchmetrics.views.frontpage %}">Linaro patches</a>
+ <a href="{% url patchmetrics.views.frontpage %}" alt="Linaro patches">
+ <img src="/images/linaro-logo.png" /></a>
{% block heading %}{% endblock %}</h1>
<div id="auth">
{% if user.is_authenticated %}
diff --git a/templates/patchmetrics/non-linaro.html b/templates/patchmetrics/non-linaro.html
new file mode 100644
index 0000000..b8863fb
--- /dev/null
+++ b/templates/patchmetrics/non-linaro.html
@@ -0,0 +1,20 @@
+{% extends "base.html" %}
+
+{% load person %}
+
+{% block headers %}
+ <script language="JavaScript" type="text/javascript"
+ src="/js/jquery-1.3.min.js">
+ </script>
+ <script language="JavaScript" type="text/javascript"
+ src="/js/jquery.tablednd_0_5.js">
+ </script>
+{% endblock %}
+{% block title %}Patches not coming from @linaro.org addresses{% endblock %}
+{% block heading %}Patches not coming from @linaro.org addresses{% endblock %}
+
+{% block body %}
+
+{% include "patchwork/patch-list.html" %}
+
+{% endblock %}