Files @ a00195c8f6d0
Branch filter:

Location: website/www/conservancy/static/projects/policies/index.html

brett
static.views: Deduplicate code.

The primary goal here is to get templates rendered more like our "regular"
templates, by using more of the standard tools to do so rather than roll our
own.

* Use TemplateResponse. This requires less boilerplate and ensures the
rendering runs through our local context processors.
* Use the existing definition of fundgoal_lookup.
{% extends "base_projects.html" %}
{% block subtitle %}Member Project Policies - {% endblock %}
{% block submenuselection %}Policies{% endblock %}
{% block content %}

<h1>Member Project Policies</h1>

<p>These are the policies that member projects follow in working with Conservancy.  These pages are provided as a reference to all projects participants.</p>

<ul>
  <li><a href="conflict-of-interest-policy.html">Conflict of interest policy</a></li>
  <li><a href="conservancy-travel-policy.html">Travel and reimbursable expense policy</a></li>
</ul>

<p>For more background about the policies, including licensing and change requests, please refer to <a href="https://k.sfconservancy.org/policies">their source code in Git</a>.</p>

{% endblock %}