mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 01:43:13 +00:00
80 lines
5.0 KiB
Twig
80 lines
5.0 KiB
Twig
{% macro format_diapo(record) %}
|
|
{% import 'common/thumbnail.html.twig' as thumbnail %}
|
|
<div class="diapo">
|
|
{{thumbnail.format(record.get_thumbnail(), 100, 100, '', true, false)}}
|
|
</div>
|
|
{% endmacro %}
|
|
|
|
<div id="modal_feed">
|
|
<div class="row-fluid" style="height:120px">
|
|
<div class="span12 record_list" style="overflow:auto;">
|
|
{% for record in publishing %}
|
|
<div class="sortable" style="position:relative;float:left;">
|
|
{{ _self.format_diapo(record) }}
|
|
<form>
|
|
<input type="hidden" name="sbas_id" value="{{record.get_sbas_id()}}" />
|
|
<input type="hidden" name="record_id" value="{{record.get_record_id()}}" />
|
|
</form>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row-fluid">
|
|
<div class="span12">
|
|
<form class="main_form" method="post" action="{{ path('prod_feeds_entry_create') }}">
|
|
<input type="hidden" name="lst" value="{{ publishing.serializedList() }}" />
|
|
<div class="row-fluid">
|
|
<div class="span6">
|
|
<h1>{{ 'Publier' | trans }}</h1>
|
|
{% set title = '' %}
|
|
{% set desc = '' %}
|
|
{% if publishing.basket() is not null %}
|
|
{% set title = publishing.basket().getName() %}
|
|
{% set desc = publishing.basket().getDescription() %}
|
|
{% endif %}
|
|
<br />
|
|
{% if app['conf'].get(['registry', 'actions', 'enable-feed-notification']) %}
|
|
<label class="checkbox">
|
|
<input class="required_text checkbox" type="checkbox" name="notify" id="feed_add_notify" value="1" style="min-height: 0; height: auto" />
|
|
<i class="icon fa fa-envelope"
|
|
aria-hidden="true"></i> {{ 'Notify users about this publication' | trans }}
|
|
</label>
|
|
<br />
|
|
{% endif %}
|
|
<label for="feed_add_title"><b>{{ 'publication : titre' | trans }}</b> <span>( {{ 'publication : title warning' | trans }} )</span></label>
|
|
<input class="required_text input-block-level" style="max-width:500px" type="text" name="title" id="feed_add_title" value="{{title}}" />
|
|
<label><span class="feed_title_warning feed_warning">{{ 'publication : title alert' | trans }}</span></label>
|
|
<label for="feed_add_subtitle"><b>{{ 'publication : sous titre' | trans }}</b> <span>( {{ 'publication : subtitle warning' | trans }} )</span></label>
|
|
<textarea id="feed_add_subtitle" style="max-width:500px" class="input-block-level" name="subtitle" rows="5">{{desc}}</textarea>
|
|
<label><span class="feed_subtitle_warning feed_warning">{{ 'publication : subtitle alert' | trans }}</span></label>
|
|
<label for="feed_add_author_name"><b>{{ 'publication : autheur' | trans }}</b></label>
|
|
<input class="required_text input-block-level" style="max-width:500px" type="text" name="author_name" id="feed_add_author_name" value="{{ app.getAuthenticatedUser().getDisplayName() }}" />
|
|
<label for="feed_add_author_mail"><b>{{ 'publication : email autheur' | trans }}</b></label>
|
|
<input class="required_text input-block-level" style="max-width:500px" type="text" name="author_mail" id="feed_add_author_mail" value="{{ app.getAuthenticatedUser().getEmail() }}" />
|
|
</div>
|
|
<div class="span6">
|
|
<div class="feeds">
|
|
<h1>{{ 'Fils disponibles' | trans }}</h1>
|
|
<div class="list">
|
|
{% for feed in feeds %}
|
|
{% if feed.isPublisher(app.getAuthenticatedUser()) %}
|
|
<div class="feed {% if loop.index is odd%}odd{% endif %}">
|
|
<span>{{ feed.getTitle() }}</span>
|
|
{% if feed.isPublic() %}
|
|
<img src="/assets/common/images/icons/ligth-on.png" title="{{ 'This feed is public' | trans }}"/>
|
|
{% endif %}
|
|
<input type="hidden" name="feed_proposal[]" value="{{ feed.getId() }}"/>
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
<input type="hidden" value="" name="feed_id" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|