{% extends 'allura:templates/repo/repo_master.html' %} {% block title %} {{c.project.name}} / {{c.app.config.options.mount_label}} / Commit {{commit.shorthand_id()}} {% endblock %} {% block header -%} Commit {{commit.shorthand_id()}} {{commit_labels(commit)}} {%- endblock %} {% block actions %} History {% endblock %} {% block content %} {{ clone_info(c.app.repo) }} {{c.revision_widget.display(value=commit, prev=prev, next=next)}} {% for type, file in artifacts %} {% endfor %}
{{ type }} {{h.really_unicode(file)}}
{% for type, file in artifacts %}
{% if type in ('added', 'changed') %} {{h.really_unicode(file)}} Diff {% elif type == 'removed' %} {{h.really_unicode(file)}} {% elif type == 'copied' %} {{h.really_unicode(file.old)}} to {{h.really_unicode(file.new)}} {% endif %}
{% if type != 'removed' %} Loading... {% else %} File was removed. {% endif %}
{% if type != 'removed' %} {% endif %} {% endfor %} {% endblock %}