review page

This commit is contained in:
dandds
2018-12-20 13:12:30 -05:00
parent 718f88d828
commit c516f0f74c
4 changed files with 136 additions and 4 deletions

View File

@@ -0,0 +1,8 @@
{% from "components/icon.html" import Icon %}
{% macro EditLink(url) -%}
<a class='icon-link' href='{{ url }}'>
{{ Icon('edit') }}
<span>edit</span>
</a>
{% endmacro %}

View File

@@ -0,0 +1,3 @@
{% macro RequiredLabel() -%}
<span class='label label--error'>Response Required</span>
{%- endmacro %}