mirror of
https://github.com/meeb/tubesync.git
synced 2025-06-23 13:36:35 +00:00
Merge pull request #841 from tcely/patch-6
Apply the suggested "Sync Now" changes
This commit is contained in:
commit
12e021f368
@ -29,4 +29,9 @@ html {
|
||||
|
||||
.help-text > i {
|
||||
padding-right: 6px;
|
||||
}
|
||||
}
|
||||
|
||||
.issue-641 {
|
||||
display: block !important;
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
|
@ -24,7 +24,7 @@
|
||||
<div class="col s12">
|
||||
<div class="collection">
|
||||
{% for source in sources %}
|
||||
<span class="collection-item flex-collection-container">
|
||||
<span class="collection-item flex-collection-container issue-641">
|
||||
<a href="{% url 'sync:source' pk=source.pk %}" class="flex-grow">
|
||||
{{ source.icon|safe }} <strong>{{ source.name }}</strong> ({{ source.get_source_type_display }} "{{ source.key }}")<br>
|
||||
{{ source.format_summary }}<br>
|
||||
@ -34,7 +34,7 @@
|
||||
<strong>{{ source.media_count }}</strong> media items, <strong>{{ source.downloaded_count }}</strong> downloaded{% if source.delete_old_media and source.days_to_keep > 0 %}, keeping {{ source.days_to_keep }} days of media{% endif %}
|
||||
{% endif %}
|
||||
</a>
|
||||
<a href="{% url 'sync:source-sync-now' pk=source.pk %}" class="collection-item"><i class="fas fa-arrow-rotate-right"></i></a>
|
||||
<a href="{% url 'sync:source-sync-now' pk=source.pk %}" class="btn">Sync Now</a>
|
||||
</span>
|
||||
{% empty %}
|
||||
<span class="collection-item no-items"><i class="fas fa-info-circle"></i> You haven't added any sources.</span>
|
||||
|
Loading…
Reference in New Issue
Block a user