2018-06-02 19:22:57 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
Topics to be Added
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2018-12-24 00:49:49 +01:00
|
|
|
<a class="btn btn-primary float-right" href="{{ url_for('todo_topics_page', q=query, show_discarded=not show_discarded) }}">
|
|
|
|
{% if not show_discarded %}
|
|
|
|
Show
|
|
|
|
{% else %}
|
|
|
|
Hide
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
Discarded Topics
|
|
|
|
</a>
|
|
|
|
|
2018-06-02 19:22:57 +02:00
|
|
|
<h1>Topics to be Added</h1>
|
|
|
|
|
|
|
|
<p>
|
2018-12-24 00:49:49 +01:00
|
|
|
{{ total - (topic_count) }} / {{ total }} topics have been added as packages to CDB.
|
|
|
|
{{ topic_count }} remaining.
|
2018-06-02 19:22:57 +02:00
|
|
|
</p>
|
|
|
|
|
2018-12-23 19:03:23 +01:00
|
|
|
<form method="GET" action="{{ url_for('todo_topics_page') }}" class="my-4">
|
|
|
|
<input class="" name="q" type="text" placeholder="Search topics" value="{{ query or ''}}">
|
|
|
|
<input class="btn btn-secondary my-2 my-sm-0 mr-sm-2" type="submit" value="Search" />
|
|
|
|
</form>
|
|
|
|
|
2018-08-25 19:20:45 +02:00
|
|
|
{% from "macros/topics.html" import render_topics_table %}
|
2018-12-24 00:49:49 +01:00
|
|
|
{{ render_topics_table(topics, show_discard=True) }}
|
2018-12-23 19:03:23 +01:00
|
|
|
|
|
|
|
<ul class="pagination mt-4">
|
|
|
|
<li class="page-item {% if not prev_url %}disabled{% endif %}">
|
|
|
|
<a class="page-link" {% if prev_url %}href="{{ prev_url }}"{% endif %}>«</a>
|
|
|
|
</li>
|
|
|
|
{% for n in range(1, page_max+1) %}
|
|
|
|
<li class="page-item {% if n == page %}active{% endif %}">
|
|
|
|
<a class="page-link"
|
|
|
|
href="{{ url_for('todo_topics_page', page=n) }}">
|
|
|
|
{{ n }}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
<li class="page-item {% if not next_url %}disabled{% endif %}">
|
|
|
|
<a class="page-link" {% if next_url %}href="{{ next_url }}"{% endif %}>»</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2018-06-02 19:22:57 +02:00
|
|
|
{% endblock %}
|
2018-12-24 00:49:49 +01:00
|
|
|
|
|
|
|
{% block scriptextra %}
|
|
|
|
<script>
|
|
|
|
var csrf_token = "{{ csrf_token() }}";
|
|
|
|
</script>
|
|
|
|
<script>
|
|
|
|
$(".topic-discard").click(function() {
|
|
|
|
var ele = $(this);
|
|
|
|
var tid = ele.attr("data-tid");
|
|
|
|
var discard = !ele.parent().parent().hasClass("discardtopic");
|
|
|
|
fetch(new Request("{{ url_for('topic_set_discard') }}?tid=" + tid +
|
|
|
|
"&discard=" + (discard ? "true" : "false"), {
|
|
|
|
method: "post",
|
|
|
|
credentials: "same-origin",
|
|
|
|
headers: {
|
|
|
|
"Accept": "application/json",
|
|
|
|
"X-CSRFToken": csrf_token,
|
|
|
|
},
|
|
|
|
})).then(function(response) {
|
|
|
|
response.text().then(function(txt) {
|
|
|
|
console.log(JSON.parse(txt));
|
|
|
|
if (JSON.parse(txt).discarded) {
|
|
|
|
ele.parent().parent().addClass("discardtopic");
|
|
|
|
ele.removeClass("btn-danger");
|
|
|
|
ele.addClass("btn-success");
|
|
|
|
ele.text("Show");
|
|
|
|
} else {
|
|
|
|
ele.parent().parent().removeClass("discardtopic");
|
|
|
|
ele.removeClass("btn-success");
|
|
|
|
ele.addClass("btn-danger");
|
|
|
|
ele.text("Discard");
|
|
|
|
}
|
|
|
|
}).catch(console.log)
|
|
|
|
}).catch(console.log)
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
{% endblock %}
|