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-16 19:28:04 +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">
|
|
|
|
<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 }}">
|
|
|
|
<button class="button is-link" type="submit">{% trans "Save" %}</button>
|
|
|
|
</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 }}">
|
|
|
|
{% include "snippets/reading_modals/form.html" %}
|
|
|
|
</fieldset>
|
2021-08-16 18:30:11 +00:00
|
|
|
</div>
|
|
|
|
{% endwith %}
|
|
|
|
|
|
|
|
{% endblock %}
|