Skip to content
Snippets Groups Projects
Unverified Commit 5d25e19a authored by Luke Murphy's avatar Luke Murphy
Browse files

Resolve name conflict.

parent c6629855
No related branches found
No related tags found
No related merge requests found
Pipeline #2978 passed
......@@ -281,7 +281,7 @@ class ViewAndEditTableTab(object):
'gender': gender_options,
'age': age_options,
'ennumerator': ennumerator_options,
'source': source_options,
'source_filters': source_options,
'next': reverse('tabbed-page', kwargs={
'name': tab_instance.page.name,
'tab_name': tab_instance.name
......
{% if source.items %}
{% if source_filters.items %}
{% load i18n %}
<div class="filter-source form-group input-group">
<div class="select-container">
<label class="col-sm-3 control-label" for="source-selector">{% trans "Source" %}</label>
<select style="width:100px;" id="source-selector" name="source" class="form-control">
<option value="All Sources" selected="selected">All Sources</option>
{% for source in source.items %}
{% for source in source_filters.items %}
<option value="{{ source }}">{{ source }}</option>
{% endfor %}
</select>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment