質問編集履歴
1
viewの公開範囲の拡大
test
CHANGED
File without changes
|
test
CHANGED
@@ -24,6 +24,16 @@
|
|
24
24
|
|
25
25
|
```ここに言語を入力
|
26
26
|
|
27
|
+
<div class= "container">
|
28
|
+
|
29
|
+
<h2 class="pt-2">投稿フォーム</h2>
|
30
|
+
|
31
|
+
<div class "posts-container">
|
32
|
+
|
33
|
+
<%= form_for(@post, :url => { controller:'posts', action:'create'})do |f| %>
|
34
|
+
|
35
|
+
<div class="post2 pt-3">
|
36
|
+
|
27
37
|
<div class="check_box">
|
28
38
|
|
29
39
|
<span>タグ</span>
|
@@ -36,6 +46,18 @@
|
|
36
46
|
|
37
47
|
<%= tag.check_box %>
|
38
48
|
|
49
|
+
<%= tag.text %>
|
50
|
+
|
51
|
+
<% end %>
|
52
|
+
|
53
|
+
</div>
|
54
|
+
|
55
|
+
<% end %>
|
56
|
+
|
57
|
+
</div>
|
58
|
+
|
59
|
+
ーーーーーーーーーーーーーーーーーーーーーーーーー
|
60
|
+
|
39
61
|
```
|
40
62
|
|
41
63
|
よろしくお願いします。
|