Sha256: 0c21fac2e6b9d217e3876b2ba2ec08ff44bb0fdcae55f532443eced4b43d61f1

Contents?: true

Size: 1.2 KB

Versions: 2

Compression:

Stored size: 1.2 KB

Contents

<button class="btn btn-danger">👉</button><div style="margin-left: 5px; border: solid 1px black; padding: 2px;">
    <p class="alert alert-primary" role="alert"><%= comment.comment_text %></p>
    
    <button class="btn btn-secondary"">
        Vote for deletion
    </button>

    <button class="btn btn-secondary">
        Report for NetzDG violation
    </button>

    <button class="btn btn-secondary">
        Report for GDPR violation
    </button>

    <button style="margin-top: 20px; margin-bottom: 20px" class="btn btn-secondary">
        Report for a violation of any locally applicable laws in your geographic region
    </button>

    <%= link_to 'Delete', comment_path(comment.id), method: 'DELETE', class: 'btn btn-danger' %>

    <br />

    <%= render 'comments', comments: comment.children %>

    <%= form_for Comment.new(banal_brainstorm_id: comment.banal_brainstorm_id, parent_id: comment.id) do |f| %>
        <div class="form-group">
            <%= f.text_field :comment_text, class: 'form-control' %>
        </div>
        <%= f.hidden_field :parent_id %>
        <%= f.hidden_field :banal_brainstorm_id %>

        <%= f.submit 'Reply to comment', class: 'btn btn-primary'%>
    <% end %>
</div>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ezii-os-5.2.1 app/views/banal/brainstorms/_comment.html.erb
ezii-os-2.0.1 app/views/banal/brainstorms/_comment.html.erb