%if thing.text or thing.css_class:
${unsafe(thing.sample.render())}
diff --git a/r2/r2/templates/flairtemplatelist.html b/r2/r2/templates/flairtemplatelist.html
index 0d8e92cbf..38fd7acea 100644
--- a/r2/r2/templates/flairtemplatelist.html
+++ b/r2/r2/templates/flairtemplatelist.html
@@ -40,7 +40,7 @@
${flair_template}
%endfor
- ${FlairTemplateEditor(empty_template)}
+ ${FlairTemplateEditor(empty_template, thing.flair_type)}
+
+<%
+from r2.models import USER_FLAIR, LINK_FLAIR
+%>
+
+%if thing.flair_type is USER_FLAIR:
+ ${thing.wrapped_user}
+%elif thing.flair_type is LINK_FLAIR:
+ ${entry(thing.wrapped_user)}
+%endif