You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
8 years ago | |
---|---|---|
templates | 8 years ago | |
.gitignore | 8 years ago | |
__init__.py | 8 years ago | |
admin.py | 8 years ago | |
apps.py | 8 years ago | |
context_processors.py | 8 years ago | |
models.py | 8 years ago | |
readme.md | 8 years ago | |
tasks.py | 8 years ago | |
tests.py | 8 years ago | |
urls.py | 8 years ago | |
utility.py | 8 years ago | |
views.py | 8 years ago |
readme.md
Changes to settings.py
add 'membermetrics'
, to INSTALLED_APPS
add
'run_metrics': {
'task': 'membermetrics.tasks.run_metrics',
'schedule': crontab(hour="*/12"),
},
to the celery scheduled thing
add
'membermetrics.context_processors.can_view_metrics',
to templates.options.context_processors
Changes to urls.py
url(_(r'^membermetrics/'),include(membermetrics.urls,namespace='membermetrics')),
Changes to stock/templates/public/base.html
add
{% if can_view_metrics %}
<li>
<a class="{% navactive request 'view_metrics view_metric' %}" href="{% url 'membermetrics:view_metrics' %}">
<i class="fa fa-lock fa-tachometer fa-fw grayiconecolor"></i>{% trans " Member Metrics" %}
</a>
</li>
{% endif %}
after the item starting with
{% if can_manage_groups %}