Eliseu Amaro
3388e0e8f1
[PLUGINS][Repeat] WIP: Action added. [PLUGINS][Favourite] Changes to accomodate note card template refactoring. [CSS] Fixed textarea from being resized horizontally.
20 lines
617 B
Twig
20 lines
617 B
Twig
{% extends 'stdgrid.html.twig' %}
|
|
{% import "/cards/note/view.html.twig" as noteView %}
|
|
|
|
{% block title %}{{ 'Remove favourite from ' | trans }}{{ note.getActorNickname() }}{{ '\'s note.' | trans }}{% endblock %}
|
|
|
|
{% block stylesheets %}
|
|
{{ parent() }}
|
|
<link rel="stylesheet" href="{{ asset('assets/default_theme/css/pages/feeds.css') }}" type="text/css">
|
|
{% endblock stylesheets %}
|
|
|
|
{% block body %}
|
|
{{ parent() }}
|
|
<div class="page">
|
|
<div class="main">
|
|
{{ noteView.macro_note_minimal(note) }}
|
|
{{ form(remove_favourite) }}
|
|
</div>
|
|
</div>
|
|
{% endblock body %}
|