forked from mirrors/bookwyrm
9 lines
276 B
HTML
9 lines
276 B
HTML
{% extends "snippets/create_status/layout.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block form_open %}{% endblock %}
|
|
|
|
{% block initial_fields %}
|
|
<input type="hidden" name="user" value="{{ request.user.id }}">
|
|
<input type="hidden" name="mention_books" value="{{ book.id }}">
|
|
{% endblock %}
|