{% extends "base.html" %} {% block content %}
{{ turn.commit_sha[:10] }}
{% endif %}
{%- for line in c.diff_content.split('\n') -%}
{%- if line.startswith('+') and not line.startswith('+++') -%}
{{ line }}
{%- elif line.startswith('-') and not line.startswith('---') -%}
{{ line }}
{%- else -%}
{{ line }}
{%- endif -%}
{%- endfor -%}