FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
patchwork/patchwork/templates/patchwork/bundle.html at main · getpatchwork/patchwork · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
getpatchwork
/
patchwork
Public
Notifications
You must be signed in to change notification settings
Fork
90
Star
315
Code
Issues
97
Pull requests
22
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
patchwork
/
patchwork
/
templates
/
patchwork
/
bundle.html
Copy path
More file actions
More file actions
Latest commit
History
History
History
42 lines (33 loc) · 1.06 KB
Breadcrumbs
patchwork
/
patchwork
/
templates
/
patchwork
/
bundle.html
Copy path
File metadata and controls
42 lines (33 loc) · 1.06 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{% extends "base.html" %}
{% load person %}
{% load static %}
{% block headers %}
<
script
src
="
{% static
"
js
/jquery.tablednd.min.js" %}"
>
</
script
>
<
script
src
="
{% static
"
js
/bundle.js" %}"
>
</
script
>
{% endblock %}
{% block title %}{{ project.name }}{% endblock %}
{% block body %}
<
h1
>
Bundle
</
h1
>
<
p
>
This bundle contains patches for the {{ bundle.project.linkname }} project.
</
p
>
<
p
>
<
a
href
="
{% url 'bundle-mbox' username=bundle.owner.username bundlename=bundle.name %}
"
>
Download bundle as mbox
</
a
>
</
p
>
{% if bundleform %}
<
form
method
="
post
"
>
{% csrf_token %}
<
input
type
="
hidden
"
name
="
form
"
value
="
bundle
"
/>
<
table
class
="
form
"
>
<
tr
>
<
th
colspan
="
2
"
class
="
headerrow
"
>
Bundle settings
</
th
>
</
tr
>
{{ bundleform }}
<
tr
>
<
td
colspan
="
2
"
class
="
submitrow
"
>
<
input
type
="
submit
"
name
="
action
"
value
="
Update
"
/>
<
input
type
="
submit
"
name
="
action
"
value
="
Delete
"
/>
</
td
>
</
tr
>
</
table
>
</
form
>
<
div
style
="
clear: both; padding: 1em;
"
>
</
div
>
{% endif %}
{% include "patchwork/partials/patch-list.html" %}
{% endblock %}
Back
|
FazBrowse Home
|
New Git URL