[TASK] Removed a method that would cause twice the work.
This commit is contained in:
@@ -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
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user