2021-08-16 18:30:11 +00:00
|
|
|
{% extends 'components/modal.html' %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% load utilities %}
|
|
|
|
|
|
|
|
{% block modal-body %}
|
|
|
|
|
|
|
|
{% block reading-dates %}{% endblock %}
|
|
|
|
|
|
|
|
{% with 0|uuid as local_uuid %}
|
|
|
|
<div class="is-flex is-justify-content-space-between">
|
2021-08-17 16:21:57 +00:00
|
|
|
<label for="post_status_{{ local_uuid }}_{{ uuid }}" data-controls="reading_content_{{ local_uuid }}_{{ uuid }}" data-controls-checkbox="post_status_{{ local_uuid }}_{{ uuid }}" data-disables="reading_content_fieldset_{{ local_uuid }}_{{ uuid }}" aria-pressed="true" data-allow-default="true">
|
2021-08-16 19:28:04 +00:00
|
|
|
<input type="checkbox" name="post-status" class="checkbox" id="post_status_{{ local_uuid }}_{{ uuid }}" checked>
|
2021-08-16 18:30:11 +00:00
|
|
|
{% trans "Post to feed" %}
|
|
|
|
</label>
|
|
|
|
<div class="is-hidden" id="hide_reading_content_{{ local_uuid }}_{{ uuid }}">
|
2021-09-29 17:59:36 +00:00
|
|
|
<button class="button is-link" type="submit">
|
|
|
|
<span class="icon icon-spinner" aria-hidden="true"></span>
|
|
|
|
<span>{% trans "Save" %}</span>
|
|
|
|
</button>
|
2021-08-16 18:30:11 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="reading_content_{{ local_uuid }}_{{ uuid }}">
|
|
|
|
<hr aria-hidden="true">
|
2021-08-16 19:28:04 +00:00
|
|
|
<fieldset id="reading_content_fieldset_{{ local_uuid }}_{{ uuid }}">
|
2021-09-29 22:35:08 +00:00
|
|
|
{% block form %}{% endblock %}
|
2021-08-16 19:28:04 +00:00
|
|
|
</fieldset>
|
2021-08-16 18:30:11 +00:00
|
|
|
</div>
|
|
|
|
{% endwith %}
|
|
|
|
|
|
|
|
{% endblock %}
|
2021-09-29 22:02:50 +00:00
|
|
|
|
|
|
|
{% block modal-form-close %}</form>{% endblock %}
|