質問編集履歴
1
必要と思われる箇所を追加しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -118,6 +118,74 @@
|
|
118
118
|
|
119
119
|
|
120
120
|
|
121
|
+
_profile.html.erb
|
122
|
+
|
123
|
+
```
|
124
|
+
|
125
|
+
<h1>User info</h1>
|
126
|
+
|
127
|
+
<div class="profile-container">
|
128
|
+
|
129
|
+
<table class="table">
|
130
|
+
|
131
|
+
<thead>
|
132
|
+
|
133
|
+
<tr>
|
134
|
+
|
135
|
+
<div class="profile-container">
|
136
|
+
|
137
|
+
<%= attachment_image_tag user, :profile_image, :fill, 60, 60, fallback: "no_image.jpg", class: "img-circle pull-left profile-thumb" %>
|
138
|
+
|
139
|
+
</div>
|
140
|
+
|
141
|
+
</tr>
|
142
|
+
|
143
|
+
|
144
|
+
|
145
|
+
<tr>
|
146
|
+
|
147
|
+
<th>name</th>
|
148
|
+
|
149
|
+
<th><div class="profile-name"><%= user.name %></div></th>
|
150
|
+
|
151
|
+
</tr>
|
152
|
+
|
153
|
+
|
154
|
+
|
155
|
+
<tr>
|
156
|
+
|
157
|
+
<th>introduce</th>
|
158
|
+
|
159
|
+
<th><div class="profile-introduction"><%= user.introduction %></div></th>
|
160
|
+
|
161
|
+
</tr>
|
162
|
+
|
163
|
+
|
164
|
+
|
165
|
+
<!-- <button type="button" class="btn btn-primary btn-block"> -->
|
166
|
+
|
167
|
+
</thead>
|
168
|
+
|
169
|
+
</table>
|
170
|
+
|
171
|
+
</div>
|
172
|
+
|
173
|
+
|
174
|
+
|
175
|
+
<div class="botan">
|
176
|
+
|
177
|
+
<%= link_to "", edit_user_path(current_user), class: "col-xs-12 btn btn-default glyphicon glyphicon-wrench" %><br>
|
178
|
+
|
179
|
+
</div>
|
180
|
+
|
181
|
+
```
|
182
|
+
|
183
|
+
|
184
|
+
|
185
|
+
![イメージ説明](2aa143e6c4ff79052443562bdc3d44f4.png)
|
186
|
+
|
187
|
+
|
188
|
+
|
121
189
|
としているのですが、画像を変更することができません
|
122
190
|
|
123
191
|
アドバイスいただけると幸いです
|