Browse Source

建議圖片尺寸

Mike 3 years ago
parent
commit
db9e12b17f
3 changed files with 7 additions and 4 deletions
  1. 2 2
      backstage/templates/collections.html
  2. 4 1
      backstage/templates/tables/editor_table.html
  3. 1 1
      run.py

+ 2 - 2
backstage/templates/collections.html

@@ -30,8 +30,8 @@
     <div class="form-group">
       {{ form.title.label(class="form-control-label modal__label mb-1") }} <span class="text-danger">(建議字數: 15字內)</span>
       {{ form.title(class="form-control form-control-lg") }}
-      {{ form.image.label(class="form-control-label modal__label mt-3 mb-1") }}
-      {{ form.image(class="form-control form-control-lg modal__file") }}
+      {{ form.image.label(class="form-control-label modal__label mt-3 mb-1") }} <span class="text-danger">(建議尺寸/比例: 寬2048px * 高1365px)</span>
+      {{ form.image(class="form-control form-control-lg modal__file") }} 
       {{ form.description.label(class="form-control-label modal__label mt-3 mb-1") }} <span class="text-danger">(建議字數: 50字內)</span>
       {{ form.description(class="form-control form-control-lg textarea") }}
     </div>

+ 4 - 1
backstage/templates/tables/editor_table.html

@@ -48,7 +48,10 @@
               <td>
                 <h4>圖片</h4>
               </td>
-              <td><input class="form-control" id="cfile" type="file" /></td>
+              <td>
+                <input class="form-control" id="cfile" type="file" />
+                <div class="mt-1 text-danger">(建議尺寸/比例: 寬2048px * 高1365px)</div>
+              </td>
             </tr>
             <tr>
               <td>

+ 1 - 1
run.py

@@ -5,4 +5,4 @@ app = create_app()
 
 
 if __name__ == '__main__':
-    app.run(debug=True, port=9000)
+    app.run(host='0.0.0.0', debug=True, port=9000)