Skip to content

Instantly share code, notes, and snippets.

View Sephi-Chan's full-sized avatar

Romain Tribes Sephi-Chan

  • Nîmes, France
View GitHub Profile

Seelies — Roadmap

V 0.1

  • Connexion & inscription ;
  • Création d'un appel aux armes pour un format donné (admin) ;
  • S'inscrire à une partie pour un format donné en invitant d'autres joueurs ;
  • Voir la liste des invitations (reçues et envoyées) ;
  • Accepter/décliner une invitation ;
<%= form_for @topic do |f| %>
<%= debug f.object.error_messages %>
<p>
<%= f.label :name %><br />
<%= f.text_field :name %>
</p>
<%= fields_for @post do |ff| %>
<p>
<%= ff.label :content %><br />
class TopicsController < ApplicationController
def index
@topics = Topic.all
end
def show
@topic = Topic.find(params[:id])
end
def new