{% extends "base.html" %} {% block content %}
{{ ch.file_path.split('/')[-1] }}
{%- for line in ch.diff_content.split('\n') -%}
{%- if line.startswith('+') and not line.startswith('+++') -%}
{{ line }}
{%- elif line.startswith('-') and not line.startswith('---') -%}
{{ line }}
{%- elif line.startswith('@@') or line.startswith('---') or line.startswith('+++') -%}
{{ line }}
{%- elif line.strip() == '' -%}
{%- else -%}
{{ line }}
{%- endif -%}
{%- endfor -%}
No uncommitted changes to commit.
Changes will appear here when jung detects file modifications.