{% extends "yamlconf/base.html" %}
{% comment %}
-*- coding: utf-8 -*-
Copyright © 2018 VMware, Inc. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause
{% endcomment %}
{% load yamconf_tags %}
{% block contents %}
|
Value |
Source |
|
{% include "yamlconf/value.html" with value=info.value hide=info.hide %}
|
{{ info.source }} |
{% if info.value != info.evalue %}
=> |
{% include "yamlconf/value.html" with value=info.evalue hide=info.hide %}
|
{% endif %}
{% if info.doc %}
Documentation
{% for doc in info.doc %}
{{ doc }}
{% endfor %}
{% endif %}
{% if info.history %}
Eclipsed Values
Value |
Source |
{% for rec in info.history %}
{% include "yamlconf/value.html" with value=rec.0 hide=info.hide %}
|
{{ rec.1 }}
|
{% endfor %}
{% endif %}
{% endblock %}