[TASK] Removed a method that would cause twice the work.

This commit is contained in:
JPT
2014-09-30 14:20:30 +02:00
parent 65b5d4fcc8
commit 2270dd23a8
3 changed files with 7 additions and 15 deletions
+3 -3
View File
@@ -73,9 +73,9 @@
<tbody>
{% for person_id, person in mapped_persons.items %}
<tr>
<td>{{person.0.citavi_uuid}}</td>
<td>{{person.1}}</td>
<td>{{person.0.global_identity}}</td>
<td>{{person.citavi_uuid}}</td>
<td>{{person}}</td>
<td>{{person.global_identity}}</td>
<td>
<a href="#TODO" title="Enter mapping wizard starting here.">Delete Mapping</a>
</td>
+1 -1
View File
@@ -191,7 +191,7 @@ class ProjectPersonView(ProtectedFormView, SingleObjectMixin):
project = self.object
kwargs[u'unmapped_persons'] = person_mapper.get_unmapped_identities(project)
kwargs[u'mapped_persons'] = person_mapper.get_mapped_identities_with_representation(project)
kwargs[u'mapped_persons'] = person_mapper.get_mapped_identities(project)
return super(ProjectPersonView, self).get_context_data(**kwargs)
def get(self, request, *args, **kwargs):