Skip to content

Commit 4a864d3

Browse files
author
Your Name
committed
convert to non-commerical / not-for-profit project
1 parent 0c75f57 commit 4a864d3

8 files changed

+30
-195
lines changed

website/templates/_subscriptions.html

-157
This file was deleted.

website/templates/about.html

+2-9
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,10 @@
1111
<div class="col-lg-6">
1212
{% include 'mobile_about.html' %}
1313

14-
<h1>Subscriptions:</h1>
14+
<h1>Bugheist is 100% free to use, Open Source and a non-commercial, not for profit initiative.</h1>
1515
</div>
1616
</div>
1717

18-
{% include '_subscriptions.html' %}
1918

20-
<div class="row">
21-
<div class="col-lg-12">
22-
<h3>Want to kick the tires before you make a purchase? {% env 'PROJECT_NAME' %} shares up to 5 software bugs fee-free
23-
through a Trial Bug Hunt.</h3>
24-
Test-drive {% env 'PROJECT_NAME' %} here <a href="/hunt" class="btn btn-primary submit_button">Start</a>
25-
</div>
26-
</div>
19+
2720
{% endblock %}

website/templates/hunt.html

+3-15
Original file line numberDiff line numberDiff line change
@@ -251,21 +251,9 @@
251251
</div>
252252
</div>
253253

254-
<h1 class="page-sub-header">Subscription:</h1>
255-
{% include '_subscriptions.html' %}
256-
<div class="row">
257-
<div class="col-lg-12">
258-
<div class="free-plan-text">
259-
<h2>Free Plan:</h2>
260-
<p>Limited to 5 bugs per month:</p>
261-
</div>
262-
<button type="submit" class="submit_button" onclick="javascript:document.getElementById('plan').value='Free'"
263-
class="btn btn-primary btn-lg">
264-
Start
265-
</button>
266-
<br><br>
267-
</div>
268-
</div>
254+
<h1 class="page-sub-header">Bugheist is 100% free to use, Open Source and a non-commercial, not for profit initiative.</h1>
255+
256+
269257
</form>
270258
{% endblock %}
271259

website/templates/image_list.html

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Image List</title>
5+
</head>
6+
<body>
7+
8+
{% for image_url in image_urls %}
9+
10+
<a href="https://console.cloud.google.com/storage/browser/_details/bhfiles/{{ image_url }}" target="_blank"> {{image_url}}</a>
11+
<img src="{{bucket_url}}{{ image_url }}" height="500"></br>
12+
<hr>
13+
{% endfor %}
14+
15+
</body>
16+
</html>

website/templates/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -250,10 +250,10 @@ <h1 class="page-sub-header">Latest activity</h1>
250250

251251
<div class="row">
252252
<div class="col-lg-12">
253-
<h1 class="page-sub-header">Subscriptions:</h1>
253+
<h1 class="page-sub-header">Bugheist is 100% free to use, Open Source and a non-commercial, not for profit initiative.</h1>
254254
</div>
255255
</div>
256-
{% include '_subscriptions.html' %}
256+
257257

258258
<script>
259259
function example(relative_path){

website/templates/mobile_about.html

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{% load custom_tags %}
22
<h1>About {% env 'PROJECT_NAME' %}</h1>
3+
<h2>Bugheist is 100% free to use, Open Source and a non-commercial, not for profit initiative.
4+
All prize money goes directly to the bug hunter.</h2>
35
<p>Software code allows us to buy a gift for Mom or Dad on amazon.com in 7 seconds, watch our favorite
46
“House of Cards” episode on Netflix or read Yelp reviews about a new restaurant.</p>
57

website/templates/privacy.html

+1-8
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,8 @@
1111
<div class="w-4/5 lg:w-1/2">
1212
{% include 'mobile_privacy.html' %}
1313

14-
<h1 class="text-4xl sm:text-5xl lg:text-6xl my-10">Subscriptions:</h1>
14+
<h1 class="text-4xl sm:text-5xl lg:text-6xl my-10">Bugheist is 100% free to use, Open Source and a non-commercial, not for profit initiative.</h1>
1515
</div>
1616

17-
{% include '_subscriptions.html' %}
18-
19-
<div class="w-4/5 lg:w-1/2">
20-
<h3>Want to kick the tires before you make a purchase? {% env 'PROJECT_NAME' %} shares up to 5 software bugs fee-free
21-
through a Trial Bug Hunt.</h3>
22-
Test-drive {% env 'PROJECT_NAME' %} here <a href="/hunt" class="btn btn-primary submit_button">Start</a>
23-
</div>
2417

2518
{% endblock %}

website/templates/report.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -148,18 +148,18 @@ <h1 class="title">REPORT A BUG</h1>
148148
"<br>Sweet! We haven't got any bug from this domain till now"
149149
);
150150
} else if (trint.number == 2) {
151-
var link = "/domain/" + trint.domain;
151+
var link = "{% env 'FQDN' %}/domain/" + trint.domain;
152152
$('.message').html(
153153
"<br>Multiple bugs already exist on this domain, ensure you are not submitting a duplicate bug by going here:<br> " +
154-
`<a href=${link} target="_blank">{% env 'FQDN' %}${link}</a>`);
154+
link);
155155
} else if (trint.number == 1) {
156-
var link = "/issue/" + trint.id;
156+
var link = "{% env 'FQDN' %}/issue/" + trint.id;
157157
$('.message').html(
158158
"<br><div class='row'>A bug with same URL already exists <br>Description: " +
159159
trint.description + "<br>Created on: " + trint.date + "/" +
160160
trint.month + "/" + trint.year +
161161
"<br>Ensure you are not submitting a duplicate bug by checking here</div>: " +
162-
`<a href=${link} target="_blank">{% env 'FQDN' %}${link}</a>`);
162+
link);
163163
}
164164
},
165165
error: function (response) {

0 commit comments

Comments
 (0)