summaryrefslogtreecommitdiffstats
path: root/webapp/templates/change_star.html
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/templates/change_star.html')
-rw-r--r--webapp/templates/change_star.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/webapp/templates/change_star.html b/webapp/templates/change_star.html
new file mode 100644
index 0000000000..2083e0ffae
--- /dev/null
+++ b/webapp/templates/change_star.html
@@ -0,0 +1,11 @@
+<span id="change-star-{{change.key.id}}">
+ {%if change.is_starred%}
+ <a href="javascript:M_removeChangeStar({{change.key.id}})">
+ <img src="/static/star-lite.gif" width="15" height="15" border="0"></a>
+ {%else%}
+ {%if request.user%}
+ <a href="javascript:M_addChangeStar({{change.key.id}})">
+ <img src="/static/star-dark.gif" width="15" height="15" border="0"></a>
+ {%endif%}
+ {%endif%}
+</span>