opengovernment / askthem

Monitor and interact with local governments in the United States
GNU Affero General Public License v3.0
41 stars 15 forks source link

hard-code link to Hayes' profile above-fold on homepage before show tonight #341

Closed davidmooreppf closed 10 years ago

davidmooreppf commented 10 years ago

Goal is to show Hayes' page ::

http://www.askthem.io/people/52e958f1f92ea1cfe8000014

... somewhere above fold before his 8pm show tonight. Whatever's easiest - if above the top national & near-you Q's, that's fine, if that's doable.

The banner could be a fallback, but that's not really ideal, as ppl won't be looking for it there really.

We'll shout-it out on FB & Twitter, but still.

walter commented 10 years ago

Instead of hardcoding we're going to try for a down and dirty implementation of two featured people.

On the left is national and on the right is actually not "featured" per se, but someone that hasn't had a question asked of them yet near the person.

Just spitballing. We'll see how it develops.

walter commented 10 years ago

To be clear, whether the national person is featured would not have an admin UI yet. Simply done via the console like so:

First make the last featured person unfettered if there was someone featured.

person = Person.find("the_id")
person.featured = false
person.save!

Then make your new featured person featured.

person = Person.find("the_id")
person.featured = true
person.save!
walter commented 10 years ago

On production and tweaked styles in place!