28 lines
965 B
HTML
28 lines
965 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block headtitle %}Skip media - {{ media }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row no-margin-bottom">
|
|
<div class="col s12">
|
|
<h1>Delete and skip media <strong>{{ media }}</strong></h1>
|
|
<p>
|
|
You can delete the downloaded file for your media <strong>{{ media }}</strong> and
|
|
mark it to never be downloaded. You might want to do this if you don't want a local
|
|
copy of some media or want to skip a single video from a source.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<form method="post" action="{% url 'sync:skip-media' pk=media.pk %}" class="col s12 simpleform">
|
|
{% csrf_token %}
|
|
{% include 'simpleform.html' with form=form %}
|
|
<div class="row no-margin-bottom padding-top">
|
|
<div class="col s12">
|
|
<button class="btn" type="submit" name="action">Really delete and skip media <i class="fas fa-trash-alt"></i></button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|