{% extends "admin/base_site_mako.html" %}
{% load dynamic_lookups %}
{% if not is_popup %}
{% block block_breadcrumbs %}
Description |
Yabi Username |
Username |
Home Dir |
Visible |
Uri |
Home Dir Uri |
{{bec.credential.description}} |
{{bec.credential.user.name}} |
{{bec.credential.username}} |
{{bec.homedir}} |
{{bec.visible}} |
{{bec.uri}} |
{{bec.homedir_uri}} |
{% autoescape off %}{{ bec.backend_cred_edit_link }}{% endautoescape %} |
{% if not error %}
File listing of {{bec.homedir_uri}}
Filename |
Size |
Date |
{% for key in listing %}
{# item tuple = (filename,size,date,link ) #}
{% for item in listing|lookup:key|lookup:'files' %}
{{item.0}} |
{{item.1}} |
{{item.2}} |
{% endfor %}
{% endfor %}
Directory listing of {{bec.homedir_uri}}
Directory |
Date |
{% for key in listing %}
{# item tuple is (directory, size, date, link) #}
{% for item in listing|lookup:key|lookup:'directories' %}
{{item.0}} |
{{item.1}} |
{% endfor %}
{% endfor %}
{% else %}
{{error}}
{% autoescape off %}{{error_help}}{% endautoescape %}
{% endif %}
{% endblock %}