Skip to content
This repository has been archived by the owner on Mar 15, 2018. It is now read-only.

Commit

Permalink
Merge branch 'eula-breadcrumb'
Browse files Browse the repository at this point in the history
  • Loading branch information
samkeen-blog committed Jun 18, 2010
2 parents 69944ab + 141f469 commit ca4dc34
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions apps/addons/templates/addons/eula.html
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
{% extends "base_side_categories.html" %}

{% block title %}
{# L10n: {} is the name of the Addon #}
{# L10n: {0} is the name of the Addon #}
{{ page_title(_('End-User License Agreement for {0}')|f(addon.name)) }}
{% endblock %}

{% set version = addon.current_version %}

{% block content %}
<header>
{# L10n: EULA stand for End User License Agreement #}
{{ breadcrumbs([(addon.type_url(), amo.ADDON_TYPES[addon.type] ),
(None, addon.name)]) }}
(url('addons.detail',addon.id), addon.name),
(None, _('EULA'))]) }}
<h2 class="name"{{ addon.name|locale_html }}>
<span>
{{ addon.name }}
Expand Down
6 changes: 4 additions & 2 deletions apps/addons/templates/addons/privacy.html
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
{% extends "base_side_categories.html" %}

{% block title %}
{# L10n: {} is the name of the Addon #}
{# L10n: {0} is the name of the Addon #}
{{ page_title(_('Privacy Policy for {0}')|f(addon.name)) }}
{% endblock %}

{% set version = addon.current_version %}

{% block content %}
<header>
{# L10n: The Privacy Policy for this addon #}
{{ breadcrumbs([(addon.type_url(), amo.ADDON_TYPES[addon.type] ),
(None, addon.name)]) }}
(url('addons.detail',addon.id), addon.name),
(None, _('Privacy Policy'))]) }}
<h2 class="name"{{ addon.name|locale_html }}>
<span>
{{ addon.name }}
Expand Down

0 comments on commit ca4dc34

Please sign in to comment.