diff --git a/app/models/university/person/alumnus/import.rb b/app/models/university/person/alumnus/import.rb
index c35dcadee5096b3e5a8f7c3d93d55a8c11a1a6e4..7bfc413b4a29796ca14e68396bdaacc161e96002 100644
--- a/app/models/university/person/alumnus/import.rb
+++ b/app/models/university/person/alumnus/import.rb
@@ -30,7 +30,7 @@ class University::Person::Alumnus::Import < ApplicationRecord
 
   def parse
     csv.each do |row|
-      row['program'] = '23279cab-8bc1-4c75-bcd8-1fccaa03ad55' #TMP local fix
+      # row['program'] = '23279cab-8bc1-4c75-bcd8-1fccaa03ad55' #TMP local fix
       program = university.education_programs
                           .find_by(id: row['program'])
       next if program.nil?
@@ -59,19 +59,18 @@ class University::Person::Alumnus::Import < ApplicationRecord
       # TODO all fields
       # gender
       # birth
-      # phonepro
-      # phoneperso
+      # phone_professional
+      # phone_personal
       # address
       # zipcode
       # city
       # country
-      # status
       person.is_alumnus = true
       person.url = url
       person.slug = person.to_s.parameterize.dasherize
-      person.twitter ||= row['socialtwitter']
-      person.linkedin ||= row['sociallinkedin']
-      person.biography ||= row['status']
+      person.twitter ||= row['social_twitter']
+      person.linkedin ||= row['social_linkedin']
+      person.biography ||= row['biography']
       person.phone ||= row['mobile']
       byebug unless person.valid?
       person.save
diff --git a/app/views/admin/university/person/alumni/index.html.erb b/app/views/admin/university/person/alumni/index.html.erb
index 00d3f196195d3103f33c70e6cfc5760fc41a8e91..81016b583aa4737abb50cb490c08484eadef5797 100644
--- a/app/views/admin/university/person/alumni/index.html.erb
+++ b/app/views/admin/university/person/alumni/index.html.erb
@@ -6,7 +6,7 @@
 
 <% content_for :action_bar_left do %>
   <%= link_to t('import'),
-              admin_university_person_alumnus_imports_path,
+              new_admin_university_person_alumnus_import_path,
               class: button_classes if can? :manage, University::Person::Alumnus::Import %>
 <% end %>
 
diff --git a/app/views/admin/university/person/alumnus/imports/new.html.erb b/app/views/admin/university/person/alumnus/imports/new.html.erb
index e63db9d069141d622bfd79e194462e11313f2600..054e172030d79c0935f3844fd04518ef8363b213 100644
--- a/app/views/admin/university/person/alumnus/imports/new.html.erb
+++ b/app/views/admin/university/person/alumnus/imports/new.html.erb
@@ -58,11 +58,11 @@
           <td>https://www.stephanedupond.fr</td>
         </tr>
         <tr>
-          <th>phonepro</th>
+          <th>phone_professional</th>
           <td>+33 1 01 01 01 01</td>
         </tr>
         <tr>
-          <th>phoneperso</th>
+          <th>phone_personal</th>
           <td>+33 1 01 01 01 01</td>
         </tr>
         <tr>
@@ -86,15 +86,15 @@
           <td>FR</td>
         </tr>
         <tr>
-          <th>status</th>
+          <th>biography</th>
           <td>Product Designer</td>
         </tr>
         <tr>
-          <th>socialtwitter</th>
+          <th>social_twitter</th>
           <td>stephanedupond</td>
         </tr>
         <tr>
-          <th>sociallinkedin</th>
+          <th>social_linkedin</th>
           <td>https://www.linkedin.com/in/stephanedupond</td>
         </tr>
       </tbody>