Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions website/templates/issue.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@
-webkit-filter:blur(2px);
display:none;
}
.fa-facebook {
color: white;
}
.fb-xfbml-parse-ignore {
margin-top: -12px;
}
{% endblock %}
{% block content %}
<div id="fb-root"></div>
Expand All @@ -32,11 +38,13 @@ <h3 class="page-header">
<strong>Domain:</strong>
<a href="{{object.url}}" target="_new">{{object.url}}</a>
<div class="pull-right">
<a class="twitter-share-button btn btn-info btn-sm"
<a class="twitter-share-button btn btn-info"
href="https://twitter.com/intent/tweet?text=Bug on @{{object.domain_title}} - {{object.description}}"
data-size="small">Tweet</a>
<span class="fb-share-button" data-href="https://www.bugheist.com/issue/{{object.id}} " data-layout="button_count" data-size="small" data-mobile-iframe="true">
<a class="fb-xfbml-parse-ignore btn btn-primary btn-sm" target="_blank">Share</a>
<a class="fb-xfbml-parse-ignore btn btn-primary btn-xs" target="_blank">
<i class="fa fa-facebook"></i> Share
</a>
</span>
</div>
<hr>
Expand Down
13 changes: 4 additions & 9 deletions website/templates/list_view.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@
{% block content %}
<div class="row">
<div class="col-lg-6">
<h1 class="page-header">Latest Issues All</h1>
<h1 class="page-header">All Issues</h1>
</div>
</div>
<div class="row">
<div class="col-lg-9">
<div class="col-lg-10">
<div class="panel panel-default">
<div class="panel-heading">
Latest
</div>
<div class="panel-heading">Latest</div>
<div class="panel-body">
<div class="list-group" >
{% for activity in activities %}
Expand All @@ -24,13 +22,10 @@ <h1 class="page-header">Latest Issues All</h1>
{% if is_paginated %}
{% if page_obj.has_previous %}
<span><a href="?page={{ page_obj.previous_page_number }}">Previous</a></span>

{% endif %}
<span>Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}.</span>
{% if page_obj.has_next %}
<span><a href="?page={{ page_obj.next_page_number }}">Next</a></span>

{% endif %}

{% endif %}
{% endblock %}
{% endblock %}