mirror of
				https://github.com/9001/copyparty.git
				synced 2025-10-31 12:43:13 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
| 
 | |
| <head>
 | |
|     <meta charset="utf-8">
 | |
|     <title>{{ title }}</title>
 | |
|     <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=0.8">
 | |
|     <style>
 | |
|         td{border:1px solid #999;border-width:0 1px 1px 0;padding:0 .3em}
 | |
|         a{display:block}
 | |
|     </style>
 | |
| </head>
 | |
| 
 | |
| <body>
 | |
|     {%- if srv_info %}
 | |
|     <p><span>{{ srv_info }}</span></p>
 | |
|     {%- endif %}
 | |
| 
 | |
|     {%- if have_b_u %}
 | |
|     <form method="post" enctype="multipart/form-data" accept-charset="utf-8" action="{{ url_suf }}">
 | |
|         <input type="hidden" name="act" value="bput" />
 | |
|         <input type="file" name="f" multiple /><br />
 | |
|         <input type="submit" value="start upload" />
 | |
|     </form>
 | |
|     <br />
 | |
|     {%- endif %}
 | |
| 
 | |
|     {%- if logues[0] %}
 | |
|     <div>{{ logues[0] }}</div><br />
 | |
|     {%- endif %}
 | |
| 
 | |
|     <table id="files">
 | |
|         <thead>
 | |
|             <tr>
 | |
|                 <th name="lead"><span>c</span></th>
 | |
|                 <th name="href"><span>File Name</span></th>
 | |
|                 <th name="sz" sort="int"><span>Size</span></th>
 | |
|                 <th name="ts"><span>Date</span></th>
 | |
|             </tr>
 | |
|         </thead>
 | |
|         <tbody>
 | |
|             <tr><td></td><td><a href="../{{ url_suf }}">parent folder</a></td><td>-</td><td>-</td></tr>
 | |
| 
 | |
| {%- for f in files %}
 | |
|     <tr><td>{{ f.lead }}</td><td><a href="{{ f.href }}{{ url_suf }}">{{ f.name|e }}</a></td><td>{{ f.sz }}</td><td>{{ f.dt }}</td></tr>
 | |
| {%- endfor %}
 | |
| 
 | |
|         </tbody>
 | |
|     </table>
 | |
|     
 | |
|     {%- if logues[1] %}
 | |
|     <div>{{ logues[1] }}</div><br />
 | |
|     {%- endif %}
 | |
|     
 | |
|     <h2><a href="{{ url_suf }}{{ url_suf and '&' or '?' }}h">control-panel</a></h2>
 | |
| 
 | |
| </body>
 | |
| </html>
 |