X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=templates%2Fpatchwork%2Fpatch.html;fp=templates%2Fpatchwork%2Fpatch.html;h=0000000000000000000000000000000000000000;hb=ad2762cf775a8dde508de47164d6429f3fd724f1;hp=f18ee3b789e92de900f4814a79fb90027c693f03;hpb=f09e982f58384946111d4157fd2b7c2b31b78612;p=patchwork diff --git a/templates/patchwork/patch.html b/templates/patchwork/patch.html deleted file mode 100644 index f18ee3b..0000000 --- a/templates/patchwork/patch.html +++ /dev/null @@ -1,199 +0,0 @@ -{% extends "base.html" %} - -{% load syntax %} -{% load person %} -{% load patch %} - -{% block title %}{{patch.name}}{% endblock %} -{% block heading %}{{patch.name}}{%endblock%} - -{% block body %} - - - - - - - - - - - - - - - - - - - - - - - - - - -{% if patch.commit_ref %} - - - - -{% endif %} -{% if patch.delegate %} - - - - -{% endif %} - - - - -
Submitter{{ patch.submitter|personify:project }}
Date{{ patch.date }}
Message ID{{ patch.msgid }}
Download - mbox -{% if patch.content %}| - patch -{% endif %} -
Permalink{{ patch.get_absolute_url }} -
State{{ patch.state.name }}{% if patch.archived %}, archived{% endif %}
Commit{{ patch.commit_ref }}
Delegated to:{{ patch.delegate.profile.name }}
Headersshow - -
- -
- -{% if patchform %} -
-

Patch Properties

-
- {% csrf_token %} - - - - - - - - - - - - - - - - - -
Change state: - {{ patchform.state }} - {{ patchform.state.errors }} -
Delegate to: - {{ patchform.delegate }} - {{ patchform.delegate.errors }} -
Archived: - {{ patchform.archived }} - {{ patchform.archived.errors }} -
- -
-
-
-{% endif %} - -{% if createbundleform %} -
-

Bundling

- - - - - -{% if bundles %} - - - - -{% endif %} -
Create bundle: - {% if createbundleform.non_field_errors %} -
{{createbundleform.non_field_errors}}
- {% endif %} -
- {% csrf_token %} - - {% if createbundleform.name.errors %} -
{{createbundleform.name.errors}}
- {% endif %} - {{ createbundleform.name }} - -
-
Add to bundle: -
- {% csrf_token %} - - - -
-
- -
-{% endif %} - -
-
-
- -{% if patch.pull_url %} -

Pull-request

-{{ patch.pull_url }} -{% endif %} - -

Comments

-{% for comment in patch.comments %} -
-
{{ comment.submitter|personify:project }} - {{comment.date}}
-
-{{ comment|commentsyntax }}
-
-
-{% endfor %} - -{% if patch.content %} -

Patch

-
-
-{{ patch|patchsyntax }}
-
-
-{% endif %} - - -{% endblock %}