# Panel (file_render)

Display and download previously uploaded files

# Screenshots

file_render

# Config

file_render:

	config:

		# Files
		files:

			# Index (name1, name2, ...., nameN)
			[name]:

				# Required | Type: string | Default: null
				# File title
				title: "Invoice"

				# Required | Type: string | Default: null
				# Name of variable with file IDs to display
				variable: "myvar"

		# UI
		ui:

			# Optional | Type: string | Default: small
			# File render behaviour
			#
			### Note
			### Select list, small or large to render files accordingly.
			#
			### Examples
			### - list
			### - small
			### - large
			view: null

			# Optional | Type: string | Default: [1,2,3]
			# Responsive layout
			#
			### Note
			### Select number of columns for mobile, tablet and desktop respectively as array of integers [1,2,4].
			layout: null

			# Optional | Type: string | Default: null
			# Panel title
			title: "Panel title"

			# Optional | Type: string | Default: null
			# Panel description
			description: "Panel description"
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47