Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time

Local News

Build a local news site where users can log in, post and read about local news and events:

Stage 1

The core functionality consists of three screens:

  1. A home page that displays summaries of all the news articles, each should include:
    1. The title
    2. A thumbnail photo
    3. The date added (with the most recent at the top)
  2. There should be an add news link or button on the homepage that takes the user to a page where they can add more news, this should include:
    1. The title
    2. A photo
    3. A detailed, multi-line, formatted news article.
  3. If a user clicks on a photo or title on the home page they should be taken to a news item page where they will be able to read the article in full, including:
    1. The title
    2. The full-sized photo
    3. The name of the author
    4. The date added
    5. The multi-paragraph, formatted news article

Stage 2

The intermediate tasks require you to make changes to the functionality:

  1. All new articles should be marked as pending and hidden from the public's view until an admin person logs in, checks the content and flags it as released.
  2. Users can edit existing articles but this will reflag them as pending.
  3. When the article is released, the person who posted the article should receive an email telling them the article is live, including the article title and with a link to the details page.
  4. The user should be prompted if they try to add or edit an article with missing fields.

Stage 3

  1. Users can provide feedback on articles:
    1. Users who view an article are given the option to rate it on a scale of 1-5 stars.
    2. They can also supply a formatted, multiline feedback comment.
  2. To encourage people to get involved you will implement some gamification by awarding points for positive behaviours:
    1. Users who post an article get 10 points per article rising to 25 points when the article gets approved by admin.
    2. They get the star rating for each piece of feedback added as points.
    3. The home screen should display the top 10 users with the highest scores.
  3. users can subscribe to a daily news digest which gets sent out each morning and contains the following information for all news articles approved over the last 24 hours:
    1. The title, summary and date/time.
    2. A link to the online article summary page.