質問編集履歴

2

動画が表示されているviewを追加しまいした

2020/11/23 22:35

投稿

takaaki919
takaaki919

スコア2

test CHANGED
File without changes
test CHANGED
@@ -10,7 +10,7 @@
10
10
 
11
11
 
12
12
 
13
- こちらが表示されているviewdです。
13
+ こちらが表示されているviewです。
14
14
 
15
15
 
16
16
 

1

動画が表示されているviewを追加しまいした

2020/11/23 22:35

投稿

takaaki919
takaaki919

スコア2

test CHANGED
File without changes
test CHANGED
@@ -10,9 +10,123 @@
10
10
 
11
11
 
12
12
 
13
-
13
+ こちらが表示されているviewdです。
14
+
15
+
16
+
14
-
17
+ ```
18
+
15
-
19
+ posta/show.html.erb
20
+
21
+ <div class="main posts-show">
22
+
23
+ <div class="container">
24
+
25
+ <div class="posts-show-item">
26
+
27
+ <div class="post-user-name">
28
+
29
+ <img src="<%= "/user_images/#{@user.image_name}" %>">
30
+
31
+ <%= link_to(@user.name, "/users/#{@user.id}") %>
32
+
33
+ </div>
34
+
35
+ <p class="samples">
36
+
37
+ <%= @post.content %>
38
+
39
+ </p>
40
+
41
+ <p class="samples">
42
+
43
+ <%= link_to @post.video_url.to_s do %>
44
+
45
+ <%= video_tag(@post.video.to_s, height: "50%", width: "50%", controls: true, autobuffer: true )%>
46
+
47
+ <% end %>
48
+
49
+ </p>
50
+
51
+ <div class="post-time">
52
+
53
+ <%= @post.created_at %>
54
+
55
+ </div>
56
+
57
+ <% if @post.user_id == @current_user.id %>
58
+
59
+ <div class="post-menus">
60
+
61
+ <%= link_to("編集", "/posts/#{@post.id}/edit") %>
62
+
63
+ <%= link_to("削除", "/posts/#{@post.id}/destroy", {method: "post"}) %>
64
+
65
+ </div>
66
+
67
+ <% end %>
68
+
69
+ </div>
70
+
71
+ <div class="comment-wrapper">
72
+
73
+ <p>コメント一覧</p>
74
+
75
+ <% @comments.each do |c| %>
76
+
77
+ <div>
78
+
79
+ <% unless c.user.blank? %>
80
+
81
+ <img src="<%= "/user_images/#{c.user.image_name}" %>">
82
+
83
+ <% end %>
84
+
85
+ <%= c.user.name unless c.user.blank? %>
86
+
87
+ <br />
88
+
89
+ <%= c.content %>
90
+
91
+ <%= link_to "削除", comment_path(c), method: :delete, class: "comment-menus" %>
92
+
93
+ </div>
94
+
95
+ <br />
96
+
97
+ <% end %>
98
+
99
+ <% if user_signed_in? %>
100
+
101
+ <%= form_with(model: @comment, url: comments_path, method: :post, local: true) do |f| %>
102
+
103
+ <%= hidden_field_tag :post_id, @post.id %>
104
+
105
+ <%= f.text_area :content, class: "form-control", cols: 40, rows:3 %>
106
+
107
+ <%= button_tag type: "submit", class: "btn btn-outline-danger btn-sm" do %>
108
+
109
+ <div class="comments">コメントする</div>
110
+
111
+ <% end %>
112
+
113
+ <% end %>
114
+
115
+ <% end %>
116
+
117
+ </div>
118
+
119
+ </div>
120
+
121
+
122
+
123
+ </div>
124
+
125
+ ```
126
+
127
+
128
+
129
+ こちらが動画を表示させたいが表示できてないviewです。
16
130
 
17
131
  ```
18
132