Weiwei Shi
Weiwei Shi

Reputation: 11

Create a drupal page with a data table

What I want to do:

  1. Setup data schema and import .csv data into drupal
  2. create a drupal page that shows the data in the table

Is there any existing module can complete similar task?

PS: I am using drupal 7.x version.

Thanks in advance.

Upvotes: 1

Views: 537

Answers (1)

Abhijit
Abhijit

Reputation: 895

First create a content type as per your schema.

Then use the Feeds module (http://drupal.org/project/feeds) to import the data from the CSV.

Use Views (http://drupal.org/project/views) to create data-table.

Upvotes: 1

Related Questions