finished moving GenerateFileData out of files.py into pa_job_manager.py
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
{% extends "base.html" %} {% block main_content %}
|
||||
<div class="container">
|
||||
<h3 class="offset-lg-2">{{page_title}} -- {{file_data.view_path}}</h3>
|
||||
<h3 class="offset-lg-2">{{page_title}}</h3>
|
||||
<div class="row">
|
||||
<table class="table table-striped table-sm col-xl-12">
|
||||
<thead><tr class="thead-light"><th>Name</th><th>Size (MB)</th><th>Path Prefix</th><th>Hash</th></tr></thead><tbody>
|
||||
{% for obj in file_data.view_list %}
|
||||
{% for obj in file_data %}
|
||||
<tr><td>
|
||||
{% if obj.type == "Directory" %}
|
||||
<i style="font-size:48;" class="fas fa-folder"></i><br><span class="figure-caption">{{obj.name}}</span>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{% extends "base.html" %}
|
||||
{% block main_content %}
|
||||
<div class="container-fluid">
|
||||
<h3 class="offset-lg-2">{{page_title}} -- {{file_data.view_path}}</h3>
|
||||
<h3 class="offset-lg-2">{{page_title}}</h3>
|
||||
<div class="form-row input-group">
|
||||
<div class="input-group-prepend">
|
||||
<button style="width:98%" class="btn btn-outline-info disabled" disabled>Size:</button>
|
||||
@@ -24,7 +24,7 @@
|
||||
</div>
|
||||
<br>
|
||||
<div class="row">
|
||||
{% for obj in file_data.view_list %}
|
||||
{% for obj in file_data %}
|
||||
{% if obj.type != "Directory" %}
|
||||
<center>
|
||||
<figure class="figure px-2" font-size: 24px;>
|
||||
|
||||
Reference in New Issue
Block a user