Sha256: 79fd1efd1df6995d566107cc6c819bb15c11cfa18cc575b61c4ee648da87ec22

Contents?: true

Size: 545 Bytes

Versions: 3

Compression:

Stored size: 545 Bytes

Contents

<%= render partial: 'kafka_command/shared/title', locals: { title: @cluster.to_human, subtitle: @topic.name } %>

<div class="column is-one-third">
  <%= form_tag topic_path(@topic), method: :patch do |f| %>
    <%=
      render(
        partial: 'form_fields',
        locals: {
          retention_bytes_value: @topic.retention_bytes,
          max_message_bytes_value: @topic.max_message_bytes,
          retention_ms_value: @topic.retention_ms,
          partitions_value: @topic.partitions.count
        }
      )
    %>
  <% end %>
</div>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
kafka_command-0.0.3 app/views/kafka_command/topics/edit.html.erb
kafka_command-0.0.2 app/views/kafka_command/topics/edit.html.erb
kafka_command-0.0.1 app/views/kafka_command/topics/edit.html.erb