<inputtype="text"class="form-control typeahead"name="tags"id="tags"value="{% for tag in book.tags %}{{tag.name.strip()}}{% if not loop.last %}, {% endif %}{% endfor %}">
</div>
<divclass="form-group">
<labelfor="series">{{_('Series')}}</label>
<inputtype="text"class="form-control typeahead"name="series"id="series"value="{% if book.series %}{{book.series[0].name}}{% endif %}">
@ -100,11 +99,14 @@
<inputtype="text"class="form-control fake-input hidden"id="fake_pubdate"value="{% if book.pubdate %}{{book.pubdate|formatdate}}{% endif %}">
</div>
</div>
<divclass="form-group">
<labelfor="publisher">{{_('Publisher')}}</label>
<inputtype="text"class="form-control typeahead"name="publisher"id="publisher"value="{% if book.publishers|length > 0 %}{{book.publishers[0].name}}{% endif %}"disabled>
</div>
<divclass="form-group">
<labelfor="languages">{{_('Language')}}</label>
<inputtype="text"class="form-control typeahead"name="languages"id="languages"value="{% for language in book.languages %}{{language.language_name.strip()}}{% if not loop.last %}, {% endif %}{% endfor %}">