6 lines
235 B
HTML
6 lines
235 B
HTML
|
{% if has_permission('blog_post', 'search') %}
|
||
|
<form action="{{ url_for('search_blog_post') }}">
|
||
|
<input type="text" name="q" value="{{ request.args.q }}" placeholder="search BlogPosts">
|
||
|
<input type="submit">
|
||
|
</form>
|
||
|
{% endif %}
|