FileField
Field of Model for upload file.
FileField
¶
Bases: Field
Field of Model for upload file.
Source code in src/ramifice/fields/file_field.py
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | |
__init__(label='', placeholder='', default=None, is_hide=False, is_disable=False, is_ignore=False, hint='', warning=[], is_require=False, max_size=2097152, target_dir='files', accept='')
¶
Field of Model for upload file.
Agrs
label: Text label for a web form field.
placeholder: Displays prompt text.
default: Value by default.
is_hide: Hide field from user.
is_disable: Blocks access and modification of the element.
is_ignore: If true, the value of this field is not saved in the database.
hint: An alternative for the placeholder parameter.
warning: Warning information.
is_require: Required field.
max_size: The maximum allowed file size in bytes.
target_dir: Directory for files inside media directory.
accept: Describing which file types to allow. Example: ".pdf,.doc,.docx,application/msword".
Source code in src/ramifice/fields/file_field.py
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | |
from_base64(self, base64_str=None, filename=None, is_delete=False)
async
¶
Convert base64 to a file, get file information and save in the target directory.
Source code in src/ramifice/fields/file_field.py
from_path(self, src_path=None, is_delete=False)
async
¶
Get file information and copy the file to the target directory.